Re: [PHP] Passing HTTP_POST from one script to another

2001-08-08 Thread A.T.Z.
>Try using sessions. Put the values/variables from $HTTP_POST_VARS >into the session and then U can use 'm again on b.php. Or.. put the post vars into hidden textfields.. these do get posted to the next page.. If you run out of luck and have to deal with PHP3.. sessions doesn't seem to work v

Re: [PHP] Passing HTTP_POST from one script to another

2001-08-08 Thread Renze Munnik
On Tue, Aug 07, 2001 at 11:27:51PM +0500, Vikram Vaswani wrote: > Hi, > > 'nother question: if I have a form which submits data in POST to script > "a.php", and I now want to pass this POSTed data to "b.php" - how do I do > this? > > I have tried the technique of iterating through $HTTP_POST and

[PHP] Passing HTTP_POST from one script to another

2001-08-07 Thread Vikram Vaswani
Hi, 'nother question: if I have a form which submits data in POST to script "a.php", and I now want to pass this POSTed data to "b.php" - how do I do this? I have tried the technique of iterating through $HTTP_POST and concatenating the key-value pairs into a GET URL, which works perfectly. Howe