Help for this page

Select Code to Download


  1. or download this
    use CGI qw(:standard);
    
  2. or download this
    use CGI qw(:standard);
    
    ...
    print header, start_html, h1('Test Page');
    print p("The name is $name");
    print end_html;
    
  3. or download this
    use CGI;
    
    ...
    print $q->header, $q->start_html, $q->h1('Test Page');
    print $q->p("The name is $name");
    print $q->end_html;