Nice way to dump out the names and values of the variables coming from a posted form:

foreach ( $_POST as $key => $value ) {
 echo $key . ” ” . “=” . ” ” . $value;
 echo  ”<BR>”;
}