[PHP] Capturing $_POST variables

2003-11-28 Thread Shaun
Hi, is it possible to capture $_POST variables sent from a previous page so i can send them on to the next page? Thanks for your help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Capturing $_POST variables

2003-11-28 Thread Sophie Mattoug
foreach ($_POST as $k = $v) { //everything you want to do } Shaun wrote: Hi, is it possible to capture $_POST variables sent from a previous page so i can send them on to the next page? Thanks for your help. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Capturing $_POST variables

2003-11-28 Thread Shaun
Thanks for your reply, I don't really need to do anything with them, just make sure they all retain their original values... Sophie Mattoug [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] foreach ($_POST as $k = $v) { //everything you want to do } Shaun wrote: Hi, is it

RE: [PHP] Capturing $_POST variables

2003-11-28 Thread Wouter van Vliet
Shaun wrote: Hi, is it possible to capture $_POST variables sent from a previous page so i can send them on to the next page? Thanks for your help. might wanna try (before any output, including spaces): ?php session_start(); foreach($_POST as $Key = $Value) $_SESSION[$Key] = $Value; But

Re: [PHP] Capturing $_POST variables

2003-11-28 Thread Thorsten Körner
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Shaun Am Freitag, 28. November 2003 14:41 schrieb Shaun: Thanks for your reply, I don't really need to do anything with them, just make sure they all retain their original values... If you are using a form to sent the data again to third page

RE: [PHP] Capturing $_POST variables

2003-11-28 Thread Wouter van Vliet
Thorsten Körner wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Shaun Am Freitag, 28. November 2003 14:41 schrieb Shaun: Thanks for your reply, I don't really need to do anything with them, just make sure they all retain their original values... If you are using a form to

Re: [PHP] Capturing $_POST variables

2003-11-28 Thread David T-G
Shaun -- ...and then Shaun said... % % I don't really need to do anything with them, just make sure they all retain % their original values... If you're going to get the original values from the submitted page anyway then you have no trust in that original value. If you need to make sure that