Re: [PHP-DB] Form Variables

2003-10-23 Thread Jason Wong
On Wednesday 22 October 2003 17:09, Ng Hwee Hwee wrote: i am using sessions already. in fact, header(Cache-control: private); worked in my other applications but not this one.. is it true that because page1.php is a https:// page so it can't cache my entries? Perhaps you had better start from

[PHP-DB] Form Variables

2003-10-22 Thread Ng Hwee Hwee
Hi all, got an urgent problem.. it's regarding forms. my system works like this.. 1) user on page1 fills up form 2) upon clicking submit button, it will go to verify.php to verify if the entries are correct 3) if there is any errors, verify.php brings user back to page1 with all the errors

Re: [PHP-DB] Form Variables

2003-10-22 Thread Jason Wong
On Wednesday 22 October 2003 15:06, Ng Hwee Hwee wrote: got an urgent problem.. it's regarding forms. my system works like this.. 1) user on page1 fills up form 2) upon clicking submit button, it will go to verify.php to verify if the entries are correct 3) if there is any errors,

[PHP-DB] form variables and session

2002-12-31 Thread Smita Manohar
hii all, im not able to acess value of form variables in session. page needs to refresh. register_globles if set to ON. pls help me out. regards, smita _ Add photos to your e-mail with MSN 8. Get 3 months FREE*.

RE: [PHP-DB] form variables and session

2002-12-31 Thread dufronte
Could you give me a complete scripts ??? --www.kapsul.org-- DuFronte -Original Message- From: Smita Manohar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 31, 2002 3:56 PM To: [EMAIL PROTECTED] Subject: [PHP-DB] form variables and session hii all, im not able to acess value

[PHP-DB] form variables not beeing passed to next page

2002-08-30 Thread simon
Upgraded from 4.06 to 4.2.2. Now suddenly even the simplist of scripts will not pass the form variables on to next page. Ex: if(isset($sumbit))... etc //Collect user info from form //Send to DB //? end PHP and 'if'...blah //Print HTML form with'action' to next page. Worked fine in 4.06?

Re: [PHP-DB] form variables not beeing passed to next page

2002-08-30 Thread Pierre-Alain Joye
On Fri, 30 Aug 2002 12:09:22 +0200 simon [EMAIL PROTECTED] wrote: Worked fine in 4.06? Have I missed something? REGISTER_GLOBAL is set to OFF from 4.2.x, code should be: if(isset($_POST['sumbit'])) pa -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] form variables not beeing passed to next page

2002-08-30 Thread Jason Wong
On Friday 30 August 2002 18:09, simon wrote: Upgraded from 4.06 to 4.2.2. Now suddenly even the simplist of scripts will not pass the form variables on to next page. Ex: if(isset($sumbit))... etc //Collect user info from form //Send to DB //? end PHP and 'if'...blah //Print HTML form