Help for this page

Select Code to Download


  1. or download this
    $cgi            = CGI->new();
    $action         = $cgi->param('a');
    ...
            my $content     = $template->output;
            print $content;
    }
    
  2. or download this
            my $template    = HTML::Template->new(
                                    die_on_bad_params => '0',
    ...
            $template->param(LATEST_NEWS => $latest_news); 
            my $content     = $template->output;
            print $content;
    
  3. or download this
       <TMPL_VAR NAME=LATEST_NEWS>
    
  4. or download this
    sub home {
          my $template    = HTML::Template->new(
                                  die_on_bad_params => '0', 
    ...
                                  die_on_bad_params => '0', 
                                  filename => 'faq.tmpl');
    }