Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use HTML::Template;
    my $template = HTML::Template->new(filename => 'test.tmpl');
    $template->param(TEXT => "Hello World");
    print "Content-Type: text/html\n\n", $template->output;
    
  2. or download this
    <html>
    <body>
    ...
    <p>There you go a modified version of Corion's script using HTML::Temp
    +late.</p>
    </body>
    </html>