Help for this page

Select Code to Download


  1. or download this
    use CGI; # And other fun stuff
    $q = new CGI;
    print $q->header,
          $q->start_html(-title=>'Title'),
          p($q->foo);
          # etc, etc
    
  2. or download this
    use CGI; # And other fun stuff
    print header,
          start_html(-title=>'Title'),
          p(param "foo");
          # etc, etc