Help for this page

Select Code to Download


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