in reply to Parsing cgi variable lists
my @lineitems = @{ $ARGS{ LineItem } }; foreach my $line (@lineitems) { print "line is $line"; my $first = $ARGS{"first-$line"}; my $second = $ARGS{"second-$line"}; my $third = $ARGS{"third-$line"}; print "first is $first"; print "second is $second"; print "third is $third"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Parsing cgi variable lists
by davidrw (Prior) on Jun 29, 2005 at 15:37 UTC |