Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use CGI qw(:standard);
    ...
    my $cgi = CGI->new;
    print $cgi->header;
    if ($cgi->param("name") ne "") { print "Welcome " . $cgi->param("name"
    +) }
    
  2. or download this
    <form method=post action=yourscript.pl>
    <input type=text name=name>
    <input type=submit name=submit>
    </form>