in reply to Passing Arguments With Perl/Cgi

Never mind! I did a lot of searching (A LOT!) and found the answer for myself. After sitting in a chat room for nearly an hour, I got my answer:
@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) }
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...