in reply to Re: Input arrays to CGI
in thread Input arrays to CGI
http://localhost/somefile.cgi?list=1&list=2&list=666 $list = param('list'); # $list is 1 @list = param('list'); # @list is (1, 2, 666)
With a list of checkboxes though, say for delete selection in a data table, I'd still have to use the map {/list_(.*)/}, param() trick, because I'd have to know which fields are checked.
Thanks for pointing that one out BUU
|
|---|