RE: [PHP] Re: php 4.1.1 vs 4.0.6

2002-03-02 Thread Scott Brown
? -Original Message- From: Andrey Hristov [mailto:[EMAIL PROTECTED]] Sent: February 23, 2002 12:53 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: php 4.1.1 vs 4.0.6 In 4.1.x series there are new vars (global scope) $_GET,$_POST,$_COOKIE,$_FILES,$_SESSION not available in 4.0.x versions

RE: [PHP] Re: php 4.1.1 vs 4.0.6

2002-03-02 Thread Rasmus Lerdorf
will no longer be supported. Is this correct? -Original Message- From: Andrey Hristov [mailto:[EMAIL PROTECTED]] Sent: February 23, 2002 12:53 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Re: php 4.1.1 vs 4.0.6 In 4.1.x series there are new vars (global scope) $_GET,$_POST

RE: [PHP] Re: php 4.1.1 vs 4.0.6

2002-03-02 Thread Scott Brown
[mailto:[EMAIL PROTECTED]] Sent: March 2, 2002 6:51 PM To: Scott Brown Cc: [EMAIL PROTECTED] Subject: RE: [PHP] Re: php 4.1.1 vs 4.0.6 You will always be able to turn register_globals on. Completely removing that feature would make it impossible to ever run a lot of code written for PHP

RE: [PHP] Re: php 4.1.1 vs 4.0.6

2002-03-02 Thread Rasmus Lerdorf
I have a site that uses a $HTTP_POST_VARS['var_name'], $HTTP_GET_VARS['var_name'] and $HTTP_SERVER_VARS['var_name'] all over the place (there is more PHP in there than flat HTML :) and more than a handful of references to $HTTP_USER_AGENT, $PHP_AUTH_*, $PHP_SELF, etc Is there anything I

Re: [PHP] Re: php 4.1.1 vs 4.0.6

2002-02-23 Thread Jason Wong
On Sunday 24 February 2002 01:14, John Lim wrote: Cc Zona [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Ezra Nugroho) wrote: I am deciding between 4.0.6 and 4.1.1 (or maybe 4.1.2 if it's comming

Re: [PHP] Re: php 4.1.1 vs 4.0.6

2002-02-23 Thread Andrey Hristov
In 4.1.x series there are new vars (global scope) $_GET,$_POST,$_COOKIE,$_FILES,$_SESSION not available in 4.0.x versions. For old scripts could be problem that register_globals is off in the 4.1.x tree(for new installations, not upgrades). But this is for good. Regards, Andrey Hristov --