Is there a function that will dump (print) all $_POST variables?
In ColdFusion I can turn on debugging in the CF Admin, in order to print out all the FORM vars that have been posted.
Thanks, James
Do you mean after every submit, or in the form's life?
You could do 2 things:
print_r($_POST);
var_dump($_POST);
Great thank you.
James