Help for this page

Select Code to Download


  1. or download this
    #!perl
    use CGI;
    $x = new CGI;
    print $x->header, $x->start_html;
    print "Hello, World\n",$x->end_html;
    
  2. or download this
    #!C:\Perl\bin\perl
    print "Content-type: text/html\n\n";
    print "Hello World";
    #end script