Help for this page

Select Code to Download


  1. or download this
    print hidden('hey','you');
    
  2. or download this
    print hidden('hey');
    
  3. or download this
    $ perl -e 'use CGI qw(:standard -debug);print hidden("hey")' hey=you
    <input type="hidden" name="hey" value="you">
    ...
    $ perl -e 'use CGI qw(:standard -debug);print hidden(-override=>1,
    -name=>"hey",-value=>"there")' hey=you
    <input type="hidden" name="" value="there">