It's called $HTTP_POST_VARS or $HTTP_GET_VARS, depending on the method
of your form. It's an array that holds all of the data that was send
through the form. In PHP 4.1+ you can use $_POST and $_GET. 

Use print_r($HTTP_POST_VARS) to see the contents of it in one of your
scripts.

---John Holmes...

> -----Original Message-----
> From: Jose Jeria [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 27, 2002 12:23 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] request object
> 
> I have a page that creates form elements dynamically. Every time the
> amount
> of form elements is different.
> 
> So to the page that I submit to I need to see how the whole request
> object.
> Is that possible?
> 
> /Jose
> 
> 
> 
> 
> 
> --
> 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

Reply via email to