in reply to CGI Forms

If all you are trying to do is list all of the params, you could also just use
print $cgi->Dump();
From the CGI docs: The Dump() method produces a string consisting of all the query's name/value pairs formatted nicely as a nested list. This is useful for debugging purposes:


-Waswas