Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
        -name => "foo",
        -default => "bar",
    ), "\n";
    
  2. or download this
    > ./hidden.pl # the code above
    <input type="hidden" name="foo" value="bar" />
    > ./hidden.pl foo=123
    <input type="hidden" name="foo" value="123" />
    
  3. or download this
    Note, that just like all the other form elements, the value of a
    hidden field is "sticky".  If you want to replace a hidden field
    ...
    have to do it manually:
    
         $query->param(hidden_name,new,values,here);