[PHP] How do I pass variables from a PHP script to an HTML document?

2001-12-05 Thread Don
Hi, I currently have a form that calls a PHP script when submit is pressed. Within the PHP script, I wish to call a custom confirmation screen. I do so by issuing the following command: Header(Location: . $form[redirect]); Now, I wanted my form variables passed from the PHP script to my

Re: [PHP] How do I pass variables from a PHP script to an HTML document?

2001-12-05 Thread Kurt Lieber
On Wednesday 05 December 2001 10:00 am, you wrote: Alternatively, is there another way to pass variables from a PHP script to a HTML form where I won't run into this limit? I'm not seeing why you have to redirect the user just to get a custom response. If you can instead use an include();