From ac7b4e6f0f5a0e5a9c4414096b7b00e41b168cdc Mon Sep 17 00:00:00 2001 From: Gabor Hojtsy Date: Sun, 11 Nov 2001 10:20:40 +0000 Subject: [PATCH] So gpc_order is deprecated, use variables_order instead git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@61962 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/chapters/config.xml b/chapters/config.xml index 14b02ffed5..1d1a97f288 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Configuration @@ -385,6 +385,31 @@ include_path = ".;c:\php\lib" and to overwrite any GET method variables with POST-method variables of the same name. + + Note, that this option is not available in PHP 4. + Use variables_order + instead. + + + + + + + variables_order + string + + + + Set the order of the EGPCS (Environment, GET, POST, Cookie, + Server) variable parsing. The default setting of this + directive is "EGPCS". Setting this to "GP", for example, + will cause PHP to completely ignore environment variables, + cookies and server variables, and to overwrite any GET + method variables with POST-method variables of the same name. + + + See also register_globals. +