RE: [PHP] Header Redirect POST

2004-03-26 Thread Ford, Mike [LSS]
On 25 March 2004 20:17, 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

Re: [PHP] Header Redirect POST

2004-03-25 Thread Jason Giangrande
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

Re: [PHP] Header Redirect POST

2004-03-25 Thread Chris Shiflett
--- Chris Thomas [EMAIL PROTECTED] wrote: 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 Location header requires an absolute URL. The problem that im running into is that the posted data is available in

RE: [PHP] Header Redirect POST

2004-03-25 Thread Chris W. Parker
Chris Shiflett mailto:[EMAIL PROTECTED] on Thursday, March 25, 2004 1:01 PM said: I think you made a typo or you're misinterpreting something. The URL referenced in a Location header will be requested with a GET request, so it is impossible that any POST data exists. alright cool. now

Re: [PHP] Header Redirect POST

2004-03-25 Thread Chris Thomas
Here is a url with the problem that i was describing http://xiot.darktech.org I fiddled and I found what the problem. Header('Location: $calling) the first char in $calling can not be a / I was setting $calling with $_SERVER['PHP_SELF'] which adds the / in front of the path. I changed