Help for this page

Select Code to Download


  1. or download this
    sub Send_Header {
        my $header_tmpl = HTML::Template->new(
    ...
        );
        $header_tmpl->param(...);
        ...
    
  2. or download this
    my $PACKAGE::header_tmpl = HTML::Template->new(
       filename => 'header.tmpl');
    ...
       $PACKAGE::header_tmpl->param(...);
       ...
    }