Help for this page

Select Code to Download


  1. 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>
    
  2. or download this
    foreach (values $ARGS{LineItem}) {
        $SQL->execute(
    ...
            $ARGS{"third-${i}"}
        );
    }
    
  3. or download this
    my @lineitems = $ARGS{"LineItem"};
    foreach my $line (@lineitems) {
    ...
    
    }