in reply to Re: Question On Forms and MS Word
in thread Question On Forms and MS Word

Thanks for your help in regards to using CGI.pm The Perl Module use CGI qw(:cgi-lib); was the problem.

Replies are listed 'Best First'.
Re^3: Question On Forms and MS Word
by mr_mischief (Monsignor) on Sep 26, 2007 at 16:00 UTC
    Okay, so you're using CGI.pm but in ts compatibility mode with cgi-lib? I'd suggest switching over to the native CGI.pm way of doing things. This:
    use CGI; my $cgi = CGI->new; my @array_of_options = $cgi->param( 'options' );
    is just dead simple compared to what you're trying to do.