Forum Moderators: coopster
For your thread title: foreach($_POST as $vblname => $value) echo $vblname . ' = ' . $value . "<br />\n"; will dump the names which came in from post.
The superglobal $_POST array contains all POSTed parameters.
ex:
$myparam = $_POST['myparam'];
<input name="myparam" />
that will dump the whole POST array to the browser in a readable way