Re: [PHP] print all variables

2003-06-18 Thread Lars Torben Wilson
On Wed, 2003-06-18 at 08:51, Matt Palermo wrote: > Could anyone tell me how to print all the variables and values from a submitted > form, so that I can check them? > > Thanks, > > Matt print_r($_REQUEST); ...or, depending on the method your form is using, one of: print_r($_POST); //

Re: [PHP] print all variables

2003-06-18 Thread Adam Voigt
print_r($_POST) OR print_r($_GET) On Wed, 2003-06-18 at 11:51, Matt Palermo wrote: > Could anyone tell me how to print all the variables and values from a submitted > form, so that I can check them? > > Thanks, > > Matt -- Adam Voigt ([EMAIL PROTECTED]) Linux/Unix Network Administrator The

[PHP] print all variables

2003-06-18 Thread Matt Palermo
Could anyone tell me how to print all the variables and values from a submitted form, so that I can check them? Thanks, Matt