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