et              Fri Feb 20 13:08:20 2004 EDT

  Modified files:              
    /phpdoc/en/reference/mysql/functions        mysql-affected-rows.xml 
  Log:
  fix my error
  
http://cvs.php.net/diff.php/phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml?r1=1.14&r2=1.15&ty=u
Index: phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.14 
phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.15
--- phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml:1.14    Fri Feb 20 
12:36:42 2004
+++ phpdoc/en/reference/mysql/functions/mysql-affected-rows.xml Fri Feb 20 13:08:20 
2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.14 $ -->
+<!-- $Revision: 1.15 $ -->
 <!-- splitted from ./en/functions/mysql.xml, last change in rev 1.2 -->
   <refentry id="function.mysql-affected-rows">
    <refnamediv>
@@ -65,7 +65,7 @@
 
 /* this should return the correct numbers of deleted records */
 mysql_query('DELETE FROM mytable WHERE id < 10');
-printf('Records deleted: %d\n', mysql_affected_rows());
+printf("Records deleted: %d\n", mysql_affected_rows());
 
 /* with a where clause that is never true, it should return 0 */
 mysql_query('DELETE FROM mytable WHERE 0');

Reply via email to