goba            Sun Nov 11 05:20:40 2001 EDT

  Modified files:              
    /phpdoc/en/chapters config.xml 
  Log:
  So gpc_order is deprecated, use variables_order instead
  
  
Index: phpdoc/en/chapters/config.xml
diff -u phpdoc/en/chapters/config.xml:1.29 phpdoc/en/chapters/config.xml:1.30
--- phpdoc/en/chapters/config.xml:1.29  Sat Nov 10 16:49:27 2001
+++ phpdoc/en/chapters/config.xml       Sun Nov 11 05:20:40 2001
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.29 $ -->
+<!-- $Revision: 1.30 $ -->
  <chapter id="configuration">
   <title>Configuration</title>
 
@@ -384,6 +384,31 @@
          "GP", for example, will cause PHP to completely ignore cookies
          and to overwrite any GET method variables with POST-method
          variables of the same name.
+        </para>
+        <para>
+         Note, that this option is not available in PHP 4.
+         Use <link linkend="ini.variables-order">variables_order</link>
+         instead.
+        </para>
+       </listitem>
+      </varlistentry>
+
+      <varlistentry id="ini.variables-order">
+       <term>
+        <parameter>variables_order</parameter>
+        <type>string</type>
+       </term>
+       <listitem>
+        <para>
+         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.
+        </para>
+        <para>
+         See also <link linkend="ini.register-globals">register_globals</link>.
         </para>
        </listitem>
       </varlistentry>


Reply via email to