RE: [PHP] Simple forms query

2003-07-09 Thread Enda Nagle
Hi guys,

Thanks a mil - works great.

I'm trying to develop a shopping cart in PHP/MySQL so I'll no doubt be
back soon with more queries - thanks

Enda
--



-Original Message-
From: Matt Matijevich [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, July 09, 2003 5:17 PM
To: 
Subject: Re: [PHP] Simple forms query


I am not 100% sure but I think you could use the $_POST array or the
$_GET array (depending on the method of your form) with the print_r
function.

>>> "Enda Nagle" <[EMAIL PROTECTED]> 07/09/03 11:04AM >>>
I know this has prob been gone through hundreds of times...

I have a form, and I want to display all the form variables on the
target page - without having to use separate print statements for each
variable.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Simple forms query

2003-07-09 Thread Matt Matijevich
I am not 100% sure but I think you could use the $_POST array or the
$_GET array (depending on the method of your form) with the print_r
function.

>>> "Enda Nagle" <[EMAIL PROTECTED]> 07/09/03 11:04AM >>>
I know this has prob been gone through hundreds of times...

I have a form, and I want to display all the form variables on the
target page - without having to use separate print statements for each
variable.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] Simple forms query

2003-07-09 Thread Jay Blanchard
[snip]
I have a form, and I want to display all the form variables on the
target page - without having to use separate print statements for each
variable.
[/snip]

print_r($_POST);
or
print_r($_GET);

hth

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php