Help for this page

Select Code to Download


  1. or download this
    if ($user) {
      $cgi->start_html;
    ...
      print "Content-Type: text/html\n\n", $template->output;
      $cgi->end_html;
    }
    
  2. or download this
    if ($user) {
       print $cgi->header,$cgi->start_html,"Hi there!",
    ...
         print $cgi->header,$cgi->start_html,
               $template->output,$cgi->end_html;
    }