Help for this page

Select Code to Download


  1. or download this
    <p>Hi, you are logged in as <!-- TMPL_VAR NAME=username -->,
    and you have <!-- TMPL_VAR NAME=new_message_count --> new messages.</p
    +>
    
  2. or download this
    use HTML::Template;
    my $template = new HTML::Template (filename=>'template.html');
    ...
    
    $|=1; ##unbuffered output is a good idea with CGI
    print $template->output; ## sends to browser;
    
  3. or download this
    require 'myfile.pl';