in reply to retrieve dynamic form data
This returns a hash ref. (mod_perl, which I use, has a similar scheme.)use CGI ’:cgi-lib’; $params = Vars;
Then you can simply delete the submit key from that hash (unless it's read only, then make a copy first). Finally, loop through the keys of the hash.
Phil
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: retrieve dynamic form data
by kutsu (Priest) on Nov 22, 2005 at 22:44 UTC | |
|
Re^2: retrieve dynamic form data
by Anonymous Monk on Nov 22, 2005 at 22:20 UTC |