Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
       use CGI qw/:standard/;           # load standard CGI routines
    ...
             start_html('hello world'), # start the HTML
             h1('hello world'),         # level 1 header
             end_html;                  # end the HTML
    
  2. or download this
    print <<"END";
    <html>
    </html>
    END