in reply to extract data from a form .. and attach a file in sendmail
Even if you don't know them, in list context CGI::param() will return the names of all of the submitted fields. You can loop over them:$name = param('name'); $email = param('email');
foreach (param()) { $fields{$_} = param($_); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: extract data from a form .. and attach a file in sendmail
by csorensen (Beadle) on Jul 01, 2000 at 07:21 UTC |