in reply to Passing Arguments With Perl/Cgi
THERE: now I can simply get a value by calling this code: $TheVariable = $name{'TheVariableFromTheForm'}; I Hope this might help anyone else who has this same question...@pairs = split(/&/, $ENV{'QUERY_STRING'}); foreach $pair (@pairs) { local($name, $value) = split(/=/, $pair); #That code that changes + to spaces and all the other characters... (w +hich I know) }
|
---|