Help for this page

Select Code to Download


  1. or download this
    This is the time: <!-- TMPL_VAR NAME="TIME" -->
    
  2. or download this
    use HTML::Template;
    
    my $tmpl=HTML::Template->new(filename => 'template.txt');
    $tmpl->param( TIME => scalar localtime(time) );
    print $tmpl->output;