Help for this page

Select Code to Download


  1. or download this
    use strict;
    use CGI;
    my $cgi = CGI->new;
    print $cgi->header;
    print '<html><body>Hello World</body></html>';
    
  2. or download this
    ...
    print $cgi->header();
    print $cgi->start_html();
    print $cgi->p("Hello World");
    print $cgi->end_html();