diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-05 16:31:02 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-05 16:31:02 +0000 |
commit | 3d297cfe81b215eed5e2b3085469573517091c43 (patch) | |
tree | e24a1ded57b1b604eca62a553ee902c5e68bff7b /php.ini-dist | |
parent | 9d3414019136847076616e4156aecabb3df81cd4 (diff) | |
download | php-git-3d297cfe81b215eed5e2b3085469573517091c43.tar.gz |
*** empty log message ***
Diffstat (limited to 'php.ini-dist')
-rw-r--r-- | php.ini-dist | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/php.ini-dist b/php.ini-dist index 7f84327119..6ae1e5bd75 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -155,12 +155,12 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; -variables_order = "EGPCBS"; This directive describes the order in which PHP registers +variables_order = "EGPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, - ; C, E & B respectively, often referred to as EGPCB or GPC). + ; C, E & S respectively, often referred to as EGPCS or GPC). ; Registration is done from left to right, newer values override ; older values. -register_globals = On ; Whether or not to register the EGPCB variables as global +register_globals = On ; Whether or not to register the EGPCS variables as global ; variables. You may want to turn this off if you don't want ; to clutter your scripts' global scope with user data. This makes ; most sense when coupled with track_vars - in which case you can |