http://qs321.pair.com?node_id=184718


in reply to Input arrays to CGI

Looks like you're defining multiple fields with similar names, but CGI.pm does not know that they go together as a group. So, to group certain widgets together for processing, I have used logic like:

<!-- html --> <input name=mylist_1 ... > <input name=mylist_2 ... > <input name=mylist_3 ... >

And then in perl:

@listitems = map(/mylist_(.*)/,$q->param(); # later... $value = $q->param( 'mylist_'.$listitems[3] );

There's probably much prettier ways of doing it. I'd love to hear what others do...