christopherbrag
01-18-2003, 04:01 AM
I would like for my perl script (cgi) to automatically get all parameters sent to it (by an HTML form) and turn them into variables so that:
param('NAME_HERE') along with all the other submitted parameters
would become $NAME_HERE
Id rather have the script do this automatically rather than specify something like this to turn each parameter into a variable:
$townname = param('townn');
$function = param('function');
$something = param('something');
Thank you, in advance.
param('NAME_HERE') along with all the other submitted parameters
would become $NAME_HERE
Id rather have the script do this automatically rather than specify something like this to turn each parameter into a variable:
$townname = param('townn');
$function = param('function');
$something = param('something');
Thank you, in advance.