[wd_asp elements=’search’ ratio=’100%’ id=1]

Foreach post variable -Collect posted fields

19th December 2013

Php - Miscellaneous

php codehaven

Just send any form to this page and it will show the names of the fields it is hopeful to collect.
$param_val) {
$message = $message."$param_name: $param_val

\n";
}
echo $message;
?>

Also

print_r($_GET); // for all GET variables
print_r($_POST); // for all POST variables