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

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.