Re: [PHP] pass value to next page

2006-11-08 Thread Richard Lynch
is one way to carry the data forward. A cleaner way is to use http://php.net/session_start On Tue, November 7, 2006 4:57 pm, Wang Chen wrote: > Hi , > > Newbie question, I have a form, > > >input . >input..

Re: [PHP] pass value to next page

2006-11-07 Thread Wang Chen
Thanks much, y'all. Forgive to my typo on the original email. On 11/7/06, Jochem Maas <[EMAIL PROTECTED]> wrote: Wang Chen wrote: > Hi , > > Newbie question, I have a form, > > > input . > input... >

Re: [PHP] pass value to next page

2006-11-07 Thread Jochem Maas
Wang Chen wrote: > Hi , > > Newbie question, I have a form, > > > input . > input... > ... > > > The search.php3 goes to query mysql dat

Re: [PHP] pass value to next page

2006-11-07 Thread benifactor
you could also do this all on one page... with different if statments to direct which part of the process your actually in. if (processone) { blah... blah... } if (processtwo) { blah... blah... } this is how all of my pages work, to an extent, and it make things much easier not having to pas

Re: [PHP] pass value to next page

2006-11-07 Thread Bruce Cowin
Hi, In search.php3, you'd need to save the values into inputs of type "hidden". You can then query them in result.php as per usual. I hope that helps. Regards, Bruce >>> "Wang Chen" <[EMAIL PROTECTED]> 8/11/2006 11:57 a.m. >>> Hi , Newbie question, I have a form,

[PHP] pass value to next page

2006-11-07 Thread Wang Chen
Hi , Newbie question, I have a form, input . input... ... The search.php3 goes to query mysql database to see if the infomation is new