- or download this
<input name="form_item{foo}" value="one">
<input name="form_item{bar}" value="two">
<input name="form_item{fiddle}" value="three">
- or download this
$hashref = $q->param('form_item');
- or download this
print $hashref->{foo}; # one
print $hashref->{bar}; # two
print $hashref->{fiddle}; # three