Help for this page

Select Code to Download


  1. or download this
    <html><head></head>
    <body>
    ...
    <input type="text" name="name" size="8" value="zzzz"> 
    <input type = 'submit' value = 'SUBMIT'>
    </form></body></html>
    
  2. or download this
    #!/usr/local/bin/perl -w
    use CGI qw(:standard);
    my $name = undef;
    $name = param("name");
    print "value = ",$name, "\n";