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 > //Pri

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: http:/

[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? Hav