Help for this page

Select Code to Download


  1. or download this
    <html>
    <head>
    ...
    </form>
    </body>
    </html>
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    my $template = HTML::Template->new(filename => 'test.tmpl');
    $template->param(list => \@ref);
    print $template->output;
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
    
    print $q->header;
    print "$_<br>" foreach $q->param('box2');