Help for this page

Select Code to Download


  1. or download this
    print $cgi->textfield(
       -name => "foo", #This is the name we need later
       -value => "bar"
    );
    
  2. or download this
    my $foo = $cgi->param(
       -name => "foo" #Back from earlier
    );