typos. noticed in user note

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@167827 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Nuno Lopes 2004-09-02 09:08:40 +00:00
parent dcbef9a848
commit 3ff3381ba8

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.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 @@ if (!$result) {
// Will get the length of the value in email so for example
// user@example.com would give us a length of 16
$length = mysql_fetch_len($result, 'email');
$length = mysql_field_len($result, 'email');
echo $length;
?>
]]>