RE: [PHP] Re: Capturing $_POST variables

2003-11-28 Thread Ford, Mike [LSS]
On 28 November 2003 14:21, Shaun wrote: > Thanks you for your replies, > > is there a reason why i couldn't use the following? > > $_POST = $_POST; None whatsoever -- but it's an expensive way of effectively doing nothing! (Which, I suspect, is not what you want to do.) The fact that you are e

Re: [PHP] Re: Capturing $_POST variables

2003-11-28 Thread Sophie Mattoug
Shaun wrote: Thanks you for your replies, is there a reason why i couldn't use the following? $_POST = $_POST; You want to assign to the $_POST array of the third page the value of the $_POST of the seconde one ? You cannot do the way you wrote because it's not on the same page ! -- PHP Gene