From: Zeev Suraski Date: Fri, 7 Apr 2000 19:55:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: php-4.0RC2~441 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83252f57b6e0bcd0a2aa12211618e1f406aa6169;p=php *** empty log message *** --- diff --git a/php.ini-optimized b/php.ini-optimized index a985f6edba..9f1d226f8b 100644 --- a/php.ini-optimized +++ b/php.ini-optimized @@ -31,6 +31,9 @@ ; Input data is no longer escaped with slashes so that it can be sent into ; SQL databases without further manipulation. Instead, you should use the ; function addslashes() on each input element you wish to send to a database. +; - variables_order = "GPCS" +; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access +; environment variables, you can use getenv() instead. ;;;;;;;;;;;;;;;;;;;; @@ -147,7 +150,7 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; -variables_order = "EGPCS" ; This directive describes the order in which PHP registers +variables_order = "GPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often referred to as EGPCS or GPC). ; Registration is done from left to right, newer values override diff --git a/php.ini-recommended b/php.ini-recommended index a985f6edba..9f1d226f8b 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -31,6 +31,9 @@ ; Input data is no longer escaped with slashes so that it can be sent into ; SQL databases without further manipulation. Instead, you should use the ; function addslashes() on each input element you wish to send to a database. +; - variables_order = "GPCS" +; The environment variables are not hashed into the $HTTP_ENV_VARS[]. To access +; environment variables, you can use getenv() instead. ;;;;;;;;;;;;;;;;;;;; @@ -147,7 +150,7 @@ warn_plus_overloading = Off ; warn if the + operator is used with strings ;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; -variables_order = "EGPCS" ; This directive describes the order in which PHP registers +variables_order = "GPCS" ; This directive describes the order in which PHP registers ; GET, POST, Cookie, Environment and Built-in variables (G, P, ; C, E & S respectively, often referred to as EGPCS or GPC). ; Registration is done from left to right, newer values override