[PHP] Re: print all variables

2003-06-18 Thread Scott Fletcher
If you want to see any data beside the form, then you can do this... print_r($GLOBALS); Only if you want to see data beside the submitted form. "Matt Palermo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Could anyone tell me how to print all the variables and values from a submitt

[PHP] Re: print all variables

2003-06-18 Thread Skex
Depending on Form Method (example uses POST METHOD) echo ""; print_r($HTTP_POST_VARS); echo ""; "Matt Palermo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Could anyone tell me how to print all the variables and values from a submitted form, so that I can check them? Thanks, Ma