- or download this
<form action="foo1.pl" method="post">
<input type="text" name="firstname" />
<input type="text" name="lastname" />
<input type="submit" />
</form>
- or download this
#!/usr/bin/perl
use strict;
...
);
print $template->output;
- or download this
<form action="foo2.pl" method="post">
<input type="text" name="firstname" value="<tmpl_var firstname>" />
<input type="text" name="lastname" value="<tmpl_var lastname>" />
<input type="submit" />
</form>