Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w 
    use strict;
    
    ...
    print"</form>";
    print"</body></html>";
    
  2. or download this
     #!/usr/bin/perl
    use cgi;
    $cgi=new CGI;
    ...
    print $cgi->param('name'), <br>;
    print $cgi->param('email');
    print $cgi->end_html();
    
  3. or download this
    #!/usr/bin/perl
    use cgi;
    $cgi=new CGI;
    ...
    print $cgi->param('email');
    print $cgi->end_html();