Help for this page

Select Code to Download


  1. or download this
    my $q = new CGI; 
    $q -> param(-name => 'choices', -value => '2');
    ...
    
    print "Content-type: text/html\n\n";
    print $page;
    
  2. or download this
    my $q = new CGI; 
    my $info = [ { -name => 'address', -value => '123 Main' },
    ...
    
    print "Content-type: text/html\n\n";
    print $page;