Hi all,
I am trying to dump the contents of $_POST, and need to dump the variable names, as well as their values. However, I don't know the variable names in advance.
Currently, I am using something like
foreach ($_POST as $post_value)
$some_string=$some_string."\n".$post_value;
which gets me all the values sent with POST by the user. How can I get the variable names as well as their values retreived?
Thanks
IraqiGeek