nlopess Thu Sep 2 05:08:42 2004 EDT
Modified files: /phpdoc/en/reference/mysql/functions mysql-field-len.xml Log: typos. noticed in user note http://cvs.php.net/diff.php/phpdoc/en/reference/mysql/functions/mysql-field-len.xml?r1=1.3&r2=1.4&ty=u Index: phpdoc/en/reference/mysql/functions/mysql-field-len.xml diff -u phpdoc/en/reference/mysql/functions/mysql-field-len.xml:1.3 phpdoc/en/reference/mysql/functions/mysql-field-len.xml:1.4 --- phpdoc/en/reference/mysql/functions/mysql-field-len.xml:1.3 Wed Jul 14 17:08:10 2004 +++ phpdoc/en/reference/mysql/functions/mysql-field-len.xml Thu Sep 2 05:08:40 2004 @@ -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.17 --> <refentry id="function.mysql-field-len"> <refnamediv> @@ -21,7 +21,7 @@ </para> <para> <example> - <title>A <function>mysql_fetch_len</function> example</title> + <title><function>mysql_field_len</function> example</title> <programlisting role="php"> <![CDATA[ <?php @@ -33,7 +33,7 @@ // Will get the length of the value in email so for example // [EMAIL PROTECTED] would give us a length of 16 -$length = mysql_fetch_len($result, 'email'); +$length = mysql_field_len($result, 'email'); echo $length; ?> ]]>