Re: [PHP] How to POST a HTML-page with the header function

2002-02-13 Thread Erik Price
On Wednesday, February 13, 2002, at 04:04 AM, L. Hoeneveld wrote: > We use the header() function to display a html page like this: > > header("Location: $mail_error_page?CODE=$CODE"); > > But instead of showing the variable $CODE we would like to hide it. > Just like > when you POST variables t

Re: [PHP] How to POST a HTML-page with the header function

2002-02-13 Thread bvr
If you really want, you can emulate a form POST by using the CURL library. Please refer to the manual for more info on CURL. bvr. > >> But instead of showing the variable $CODE we would like to hide it. Just >> like >> when you POST variables to a HTML-page. Is there any way to do this? --

RE: [PHP] How to POST a HTML-page with the header function

2002-02-13 Thread Rick Emery
day, February 13, 2002 9:30 AM To: Rick Emery Cc: [EMAIL PROTECTED] Subject: Re: [PHP] How to POST a HTML-page with the header function I'll study on that. And in case you have an easy example for both suggested methods I am willing to receive that. We use the PHP-pages as external services

Re: [PHP] How to POST a HTML-page with the header function

2002-02-13 Thread L. Hoeneveld
I'll study on that. And in case you have an easy example for both suggested methods I am willing to receive that. We use the PHP-pages as external services and I wonder if a session-ID can be used then. But maybe a cookie is an idea... In any case thanks and regards, Léon Hoeneveld Rick Emery

RE: [PHP] How to POST a HTML-page with the header function

2002-02-13 Thread Rick Emery
Short answer: NO. Because your method is the same as the GET method Use cookies or sessions to pass hidden variable values -Original Message- From: L. Hoeneveld [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 13, 2002 3:05 AM To: [EMAIL PROTECTED] Subject: [PHP] How to POST a HTML-