Help for this page

Select Code to Download


  1. or download this
    # send the obligatory Content-Type and print the template output
    print "Content-Type: text/html\n\n", $template->output;
    
  2. or download this
    print "Content-Type: text/html\n\n". $template->output;
    
  3. or download this
    print sprintf("Content-Type:text/html\n\n%s",$template->output);