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