Is it possible to find out and list the variables that have been passed to a page via a form?
asuming your data has been sent with post method:
foreach($HTTP_POST_VARS as $formdata => $val){ echo "var_name: $formdata<br> var_value: $val <br><br>"; }
should work. If you use PHP >= 4.2.0 us $_POST instead of $HTTP_POST_VARS.
ali