Chris Thomas wrote:
I am not sure if this was designed like this, or if its just something im
doing wrong.

Im posting some data to a processing page, where i handle it then use
Header('Location: other.php') to direct me to another page.

The problem that im running into is that the posted data is available in
other.php.
I would like to get it so that in other.php $_POST  should be an empty array

Any suggestions??

Chris


If the processing page and other.php page are two separate pages I don't see how you could be getting the same $_POST data that the processing page is receiving. You aren't passing any data from your processing page to hidden form inputs (or something) on that page before you call header() are you? Perhaps if you gave an example of your code I might have a better idea of what is going on. You could also try using unset($_POST) in other.php to make sure $_POST is empty for that page.


--
Jason Giangrande <[EMAIL PROTECTED]>
http://www.giangrande.org
http://www.dogsiview.com

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



Reply via email to