Help for this page

Select Code to Download


  1. or download this
    <html>
     <head>
    ...
      <!-- tmpl_include name='page.inc' -->
     </body>
    </html>
    
  2. or download this
    <h2><!-- tmpl_var name='title' --></h2>
    
  3. or download this
    my $template = HTML::Template->new( filename => 'layout.tmpl' );
    $template->param( title => "Steve" );
    print $template->output();
    
  4. or download this
     <!-- tmpl_include name='<!-- tmpl_var name='filename' -->'>
    
  5. or download this
    
    #
    ...
    $template->param( title => "Something here" );
    
    print $template->output();