Just send any form to this page and it will show the names of the fields it is hopeful to collect.
1 2 3 4 5 6 7 8 |
<?php foreach ($_POST as $param_name => $param_val) { $message = $message."$param_name: $param_val<p>\n"; } echo $message; ?> |
Also
1 2 3 4 |
print_r($_GET); // for all GET variables print_r($_POST); // for all POST variables |