Help for this page

Select Code to Download


  1. or download this
    replace:
    $output .= $template->process($file, $vars) ||
    
    with:
    $template->process($file, $vars, \$output) ||
    
  2. or download this
    replace:
    my $output =  "Content-type: text/html\n\n";
    
    with:
    print "Content-type: text/html\n\n";