vrana           Mon Jan 30 21:32:11 2006 UTC

  Modified files:              
    /phpdoc/en/reference/mysqli/functions       
                                                mysqli-stmt-send-long-data.xml 
  Log:
  Hide E_NOTICE in example
  
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml?r1=1.7&r2=1.8&diff_format=u
Index: phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml
diff -u phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml:1.7 
phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml:1.8
--- phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml:1.7     
Mon Jan 30 16:15:20 2006
+++ phpdoc/en/reference/mysqli/functions/mysqli-stmt-send-long-data.xml Mon Jan 
30 21:32:11 2006
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.7 $ -->
+<!-- $Revision: 1.8 $ -->
 <refentry id="function.mysqli-stmt-send-long-data">
  <refnamediv>
   <refname>mysqli_stmt_send_long_data</refname>
@@ -48,6 +48,7 @@
 <![CDATA[
 <?php
 $stmt = $mysqli->prepare("INSERT INTO messages (message) VALUES (?)");
+$null = NULL;
 $stmt->bind_param("b", $null);
 $fp = fopen("messages.txt", "r");
 while (!feof($fp)) {

Reply via email to