RE: [PHP] Header() and POST data

2004-05-07 Thread Lizet Peña de Sola
have received this message in error, please notify us immediately and destroy the original. -Original Message- From: Todd Cary [mailto:[EMAIL PROTECTED] Sent: Thursday, May 06, 2004 4:51 PM To: [EMAIL PROTECTED] Cc: Gus Scherer Subject: [PHP] Header() and POST data I need to go

Re: [PHP] Header() and POST data

2004-05-07 Thread Chris Shiflett
--- Todd Cary [EMAIL PROTECTED] wrote: I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does not show in the URL? No, which is a very Good Thing. Chris = Chris Shiflett -

[PHP] Header() and POST data

2004-05-06 Thread Todd Cary
I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does not show in the URL? Todd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Header() and POST data

2004-05-06 Thread Daniel Clark
No I don't think so. I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does not show in the URL? Todd -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Header() and POST data

2004-05-06 Thread Daniel Clark
You could create a new FORM with hidden variable. And have an automatic submit onload, going to the next location. I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does not show in the URL?

Re: [PHP] Header() and POST data

2004-05-06 Thread Todd Cary
Daniel - What is the best way to go to another page? header(location: . $new_page); Todd Daniel Clark wrote: No I don't think so. I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does

Re: [PHP] Header() and POST data

2004-05-06 Thread Curt Zirzow
* Thus wrote Todd Cary ([EMAIL PROTECTED]): I need to go to another page and I use the header(location: . $the_url_to_the_page); Is it possible to use this method with POST so that the info does not show in the URL? No. You can use session's to pass data without the user knowing about

Re: [PHP] Header() and POST data

2004-05-06 Thread Daniel Clark
Yes I agree, SESSION variables would be a pretty good way to pass info to the next page. Daniel - What is the best way to go to another page? header(location: . $new_page); Todd Daniel Clark wrote: No I don't think so. I need to go to another page and I use the

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

[PHP] Header Redirect POST

2004-03-25 Thread Chris Thomas
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

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

[PHP] header() and POST

2002-09-18 Thread dsfljsdfklj kljvdskljfsdkl
I have the following problem: a php page receives POST data from a form, it needs to elaborate the data and send it to another page again in POST automatically, without the user noticing. Is it possible to use the header() function to send a POST request? If yes how? And how do I send the post

Re: [PHP] header() and POST

2002-09-18 Thread Chris Shiflett
The short answer is no (based on my interpretation of your question). Consider carefully where you are wanting to send data and when. The header() function is specifically for manipulating HTTP headers in the response you will send the Web client. You are probably not wanting to post data to

Re: [PHP] header() and POST

2002-09-18 Thread Chris Shiflett
Here is an example of how to manually perform an HTTP POST with PHP. If you execute this code, you should see the search results of searching the PHP manual for the term curl (using language en_US). Curl is another option for people who need to do this sort of thing. Happy hacking. Chris