using a more generic entity

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@133959 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mehdi Achour 2003-07-02 08:57:56 +00:00
parent db352d77e7
commit 2cf97bf6d1
6 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.27 -->
<refentry id="function.mysql-fetch-array">
<refnamediv>
@ -63,7 +63,7 @@ select table1.field as foo, table2.field as bar from table1, table2
using MYSQL_NUM, you only get number indices (as
<function>mysql_fetch_row</function> works).
</para>
&mysql.field-case;
&database.field-case;
<example>
<title>mysql_fetch_array with MYSQL_NUM</title>
<programlisting role="php">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.6 $ -->
<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.45 -->
<refentry id="function.mysql-fetch-assoc">
<refnamediv>
@ -41,7 +41,7 @@
<function>mysql_fetch_row</function>, while it
provides a significant added value.
</para>
&mysql.field-case;
&database.field-case;
<example>
<title>An expanded <function>mysql_fetch_assoc</function> example</title>
<programlisting role="php">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-fetch-field">
<refnamediv>
@ -91,7 +91,7 @@
</listitem>
</itemizedlist>
</para>
&mysql.field-case;
&database.field-case;
<example>
<title><function>mysql_fetch_field</function></title>
<programlisting role="php">

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.4 $ -->
<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-fetch-object">
<refnamediv>
@ -23,7 +23,7 @@
that you can only access the data by the field names, and not by
their offsets (numbers are illegal property names).
</para>
&mysql.field-case;
&database.field-case;
<para>
<programlisting role="php">
<![CDATA[

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.3 $ -->
<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-fetch-row">
<refnamediv>
@ -27,7 +27,7 @@
return the next row in the result set, or &false; if there are no
more rows.
</para>
&mysql.field-case;
&database.field-case;
<para>
See also: <function>mysql_fetch_array</function>,
<function>mysql_fetch_object</function>,

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.5 $ -->
<!-- $Revision: 1.6 $ -->
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
<refentry id="function.mysql-field-name">
<refnamediv>
@ -30,7 +30,7 @@
of the fourth field would be 3 and so on.
</para>
</note>
&mysql.field-case;
&database.field-case;
<para>
<example>
<title><function>mysql_field_name</function> example</title>