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 - http:

RE: [PHP] Header() and POST data

2004-05-07 Thread Lizet Peña de Sola
Hi, I had the same problem, had to send parameters through POST to a second page I redirected to, I ended up using the curl library but I'm still facing a few troubles with it, it redirects the page, the parameters are sent through POST but the relative urls on the second page are taking the first

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

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

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 do

Re: [PHP] Header() and POST data

2004-05-06 Thread Daniel Clark
You could create a new 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 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: http:/