RE: [PHP] php 3 to 4.3

2003-04-03 Thread Philip Olson
On Wed, 2 Apr 2003, daniel wrote: > if u need it to work for both versions use $HTTP_POST_VARS instead Keep in mind that the deprecated PHP directive track_vars must be on for $HTTP_*_VARS type variables to exist in PHP versions prior to 4.0.3 Regards, Philip -- PHP General Mailing List (http

RE: [PHP] php 3 to 4.3

2003-04-03 Thread daniel
if u need it to work for both versions use $HTTP_POST_VARS instead -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php 3 to 4.3

2003-04-03 Thread daniel
hey thats harsh , use $_POST['form_name'] , i am currently having to work with php3 even though i code for php4+ usually i hate 3 with a passion so limited. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] php 3 to 4.3

2003-04-02 Thread John W. Holmes
PHP Architect - A monthly magazine for PHP Professionals. Get your copy today. http://www.phparch.com/ -Original Message- From: Jennifer Fountain [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 8:18 PM To: [EMAIL PROTECTED] Subject: [PHP] php 3 to 4.3 Has anyone had issues with thei

Re: [PHP] php 3 to 4.3

2003-04-02 Thread John Nichel
http://www.php.net/manual/en/language.variables.scope.php http://www.php.net/manual/en/language.variables.external.php Before PHP 4.2.0 the default value for register_globals was on. And, in PHP 3 it was always on. The PHP community is encouraging all to not rely on this directive as it's prefer

[PHP] php 3 to 4.3

2003-04-02 Thread Jennifer Fountain
Has anyone had issues with their php scripts not working after upgrading php from 3 to 4.3?   I have simple page that inserts data into mysql db.  The scripts worked fine until after the upgrade.    Below is one of my php scripts.  When I hit submit, nothing is added to the db :(   Add Record /