philip          Fri Jan 18 16:50:45 2002 EDT

  Modified files:              
    /phpdoc/en/language variables.xml 
  Log:
  $_FILES: Documented.  Couple other minor changes.
  
  
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.30 phpdoc/en/language/variables.xml:1.31
--- phpdoc/en/language/variables.xml:1.30       Tue Jan 15 16:43:10 2002
+++ phpdoc/en/language/variables.xml    Fri Jan 18 16:50:44 2002
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.30 $ -->
+<!-- $Revision: 1.31 $ -->
  <chapter id="language.variables">
   <title>Variables</title>
   
@@ -585,15 +585,24 @@
          about files uploaded via the HTTP POST method. See <link
          linkend="features.file-upload.post-method">POST method
          uploads</link> for information on the contents of
-         <varname>$HTTP_POST_FILES</varname>.
+         <varname>$HTTP_POST_FILES</varname>.  Introduced in 4.0.0.
         </simpara>
-        <para>
-         <varname>$HTTP_POST_FILES</varname> is available only in PHP
-         4.0.0 and later.
-        </para>
        </listitem>
       </varlistentry>
-  
+
+      <varlistentry>
+       <term>$_FILES</term>
+       <listitem>
+        <simpara>
+         An associative array of variables containing information
+         about files uploaded via the HTTP POST method. See <link
+         linkend="features.file-upload.post-method">POST method
+         uploads</link> for information on the contents of
+         <varname>$_FILES</varname>.  Introduced in PHP 4.1.0.
+        </simpara>
+       </listitem>
+      </varlistentry>
+
     <varlistentry>
        <term>$HTTP_ENV_VARS</term>
        <listitem>
@@ -656,8 +665,7 @@
          current script.  Automatically global in any scope.  Creating
          new entries in the $_SESSION array will automatically
          register them as session variables, as if you called
-         <function>session_register</function>.  Introduced in PHP
-         4.1.
+         <function>session_register</function>.  Introduced in PHP 4.1.0.
         </simpara>
        </listitem>
       </varlistentry>


Reply via email to