in reply to form fields into array

Yes, in fact, there's no way to avoid it. That is the default behavior.
my @params = $cgi->param("arrayname"); # violla!
You did ask specifically about CGI. The section you want is here.

-Paul

Replies are listed 'Best First'.
Re^2: form fields into array
by Losing (Acolyte) on Jan 12, 2007 at 21:42 UTC
    aghhh!!! Thanks for the reply. I was doing it that way, but I was leaving off the brackets when calling $cgi->param(). Works fine now! Thanks for the help.