in reply to Re^2: Multiple form selections in cgi
in thread Multiple form selections in cgi

Unfortunately the id attributes of your form elements do not get sent to your CGI scripts, only the names and values.

One of the features (OK, probably the only feature) that I like about PHP is you can name form elements something like blah[3][2] and then PHP will automatically create an 2D array with that element's value at [3][2]. I wonder if there's a CPAN module for doing similar form parsing in Perl?