- or download this
sub selectify {
my $values = shift;
...
}
} @{$values}];
}
- or download this
$template->param(foo_loop => selectify(\@values,\@labels,\@selected));
- or download this
<select name="foo">
<tmpl_loop name="foo_loop">
...
</option>
</tmpl_loop>
</select>
- or download this
<select name="foo">
<tmpl_loop name="foo_loop">
<tmpl_include name="option.tmpl">
</tmpl_loop>
</select>