Help for this page

Select Code to Download


  1. or download this
    use CGI qw(:all);
    my $cgi = CGI->new;
    
  2. or download this
    # import CGI's functions into my namespace
    use CGI qw(:all);
    
    print header, start_html( ... ), h1('HTML Body'), end_html;
    
  3. or download this
    use CGI;
    
    ...
    my $cgi = CGI->new;
    
    print $cgi->header ... (yadda yadda)