in reply to Re: Reading Checkboxes
in thread Reading Checkboxes
The correct solution is to defer processing like this to CGI.pm, which will correctly handle multiple checkboxes with the same name.foreach my $pair (split /&/, $ENV{QUERY_STRING}) { my ($key, $value) = split(/=/, $pair); $parameters{$key} = $value; }
|
|---|