From: Zeev Suraski Date: Sat, 5 Feb 2000 16:31:02 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: BEFORE_SAPIFICATION_FEB_10_2000~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3d297cfe81b215eed5e2b3085469573517091c43;p=php *** empty log message *** --- 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