- or download this
<form method="get" action="test_list.html">
<input type="hidden" name="LineItem" value="1" />
...
<input type="submit" name="a" value="go">
</form>
- or download this
foreach (values $ARGS{LineItem}) {
$SQL->execute(
...
$ARGS{"third-${i}"}
);
}
- or download this
my @lineitems = $ARGS{"LineItem"};
foreach my $line (@lineitems) {
...
}