Help for this page

Select Code to Download


  1. or download this
    use CGI qw/:standard :delete_all :escapeHTML :html3 :all/;
    use HTML::Template; 
    ...
    $template->param( item3 => $item3_val );
    
    print $template->output();
    
  2. or download this
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    ...
    
    </body>
    </html>
    
  3. or download this
    use CGI qw/:standard :delete_all :escapeHTML :html3 :all/;
    use HTML::Template; 
    ...
    $template->param( html_output => $html_output );
    
    print $template->output();
    
  4. or download this
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    ...
    
    </body>
    </html>