Hey Bill:
If you have track_vars on (or are using a recent version of php) you can dump all of the form variables by simply doing:
print_r($HTTP_POST_VARS);
and
print_r($HTTP_GET_VARS);
Depending on what method you use on your form (if there is a lot of data, I would assume the post vars..) Hope that helps!
Chris King