in reply to Handling Dynamically Created Forms
I believe that all your params passed to your script are in the %in hash. To iterate over the whole hash something like that might work:
foreach my $i (keys %in){ print "$i: $in{$i}\n"; }
As a side note, the ReadParse methode of CGI.pm (you are using CGI.pm, right?) is deprecated. You should not use it for new code.
Official ways to fetch all parameters at once from a CGI are:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Handling Dynamically Created Forms
by buckaduck (Chaplain) on Mar 21, 2001 at 04:22 UTC | |
|
Re: Re: Handling Dynamically Created Forms
by one4k4 (Hermit) on Mar 21, 2001 at 18:24 UTC |