didou           Thu Jul  3 04:26:08 2003 EDT

  Modified files:              
    /phpdoc/en/reference/mysqli/functions       mysqli-fetch-array.xml 
                                                mysqli-fetch-assoc.xml 
                                                mysqli-fetch-object.xml 
                                                mysqli-fetch-row.xml 
  Log:
  see also and &database.field-case;
  
Index: phpdoc/en/reference/mysqli/functions/mysqli-fetch-array.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-fetch-array.xml:1.6 
phpdoc/en/reference/mysqli/functions/mysqli-fetch-array.xml:1.7
--- phpdoc/en/reference/mysqli/functions/mysqli-fetch-array.xml:1.6     Sun May 25 
15:27:11 2003
+++ phpdoc/en/reference/mysqli/functions/mysqli-fetch-array.xml Thu Jul  3 04:26:08 
2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
   <refentry id="function.mysqli-fetch-array">
    <refnamediv>
     <refname>mysqli_fetch_array</refname>
@@ -22,6 +22,7 @@
      numeric indices of the result array, the <function>mysqli_fetch_array</function> 
function can
      also store the data in associative indices, using the field names of the result 
set as keys.
     </para>
+    &database.field-case;
     <para>
      If two or more columns of the result have the same field names, the last column 
will take
      precedence and overwrite the earlier data. In order to access multiple columns 
with the same
@@ -100,6 +101,11 @@
 ]]>
       </programlisting>
      </example>
+    </para>
+    <para>
+     See also <function>mysqli_fetch_assoc</function>,
+     <function>mysqli_fetch_row</function> and
+     <function>mysqli_fetch_object</function>.
     </para>
    </refsect1>
   </refentry>
Index: phpdoc/en/reference/mysqli/functions/mysqli-fetch-assoc.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-fetch-assoc.xml:1.4 
phpdoc/en/reference/mysqli/functions/mysqli-fetch-assoc.xml:1.5
--- phpdoc/en/reference/mysqli/functions/mysqli-fetch-assoc.xml:1.4     Wed Jun 11 
04:10:35 2003
+++ phpdoc/en/reference/mysqli/functions/mysqli-fetch-assoc.xml Thu Jul  3 04:26:08 
2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
   <refentry id="function.mysqli-fetch-assoc">
    <refnamediv>
     <refname>mysqli_fetch_assoc</refname>
@@ -28,6 +28,7 @@
      <function>mysqli_fetch_row</function> should be used which returns an 
numerically-indexed
      array instead.
     </para>
+    &database.field-case;
     <example>
      <title>An expanded <function>mysqli_fetch_assoc</function> example</title>
      <programlisting role="php">
@@ -78,6 +79,11 @@
 ]]>
      </programlisting>
     </example>
+    <para>
+     See also <function>mysqli_fetch_array</function>,
+     <function>mysqli_fetch_row</function> and
+     <function>mysqli_fetch_object</function>.
+    </para>
    </refsect1>
   </refentry>
 
Index: phpdoc/en/reference/mysqli/functions/mysqli-fetch-object.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-fetch-object.xml:1.5 
phpdoc/en/reference/mysqli/functions/mysqli-fetch-object.xml:1.6
--- phpdoc/en/reference/mysqli/functions/mysqli-fetch-object.xml:1.5    Tue Jun 10 
13:18:06 2003
+++ phpdoc/en/reference/mysqli/functions/mysqli-fetch-object.xml        Thu Jul  3 
04:26:08 2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
   <refentry id="function.mysqli-fetch-object">
    <refnamediv>
     <refname>mysqli_fetch_object</refname>
@@ -15,6 +15,12 @@
      The <function>mysqli_fetch_object</function> will return the current row result 
set 
      as an object where the attributes of the object represent the names of the 
fields found
      within the result set. If no more rows exist in the current result set, &false; 
is returned.
+    </para>
+    &database.field-case;
+    <para>
+     See also <function>mysqli_fetch_array</function>,
+     <function>mysqli_fetch_assoc</function> and
+     <function>mysqli_fetch_row</function>.
     </para>
    </refsect1>
   </refentry>
Index: phpdoc/en/reference/mysqli/functions/mysqli-fetch-row.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-fetch-row.xml:1.3 
phpdoc/en/reference/mysqli/functions/mysqli-fetch-row.xml:1.4
--- phpdoc/en/reference/mysqli/functions/mysqli-fetch-row.xml:1.3       Sun May 25 
15:09:28 2003
+++ phpdoc/en/reference/mysqli/functions/mysqli-fetch-row.xml   Thu Jul  3 04:26:08 
2003
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
   <refentry id="function.mysqli-fetch-row">
    <refnamediv>
     <refname>mysqli_fetch_row</refname>
@@ -20,6 +20,11 @@
      in an array offset starting from 0 (zero). Each subsequent call to the
      <function>mysqli_fetch_row</function> function will return the next row within 
the result set,
      or &false; if there are no more rows.
+    </para>
+    <para>
+     See also <function>mysqli_fetch_array</function>,
+     <function>mysqli_fetch_assoc</function> and
+     <function>mysqli_fetch_object</function>.
     </para>
    </refsect1>
   </refentry>



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to