ali             Fri Jul 30 10:03:28 2004 EDT

  Modified files:              
    /phpdoc/en/reference/filesystem/functions   fgetcsv.xml 
  Log:
  closing paragraph element in example
  
  
http://cvs.php.net/diff.php/phpdoc/en/reference/filesystem/functions/fgetcsv.xml?r1=1.11&r2=1.12&ty=u
Index: phpdoc/en/reference/filesystem/functions/fgetcsv.xml
diff -u phpdoc/en/reference/filesystem/functions/fgetcsv.xml:1.11 
phpdoc/en/reference/filesystem/functions/fgetcsv.xml:1.12
--- phpdoc/en/reference/filesystem/functions/fgetcsv.xml:1.11   Thu Jul 22 18:51:11 
2004
+++ phpdoc/en/reference/filesystem/functions/fgetcsv.xml        Fri Jul 30 10:03:28 
2004
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.11 $ -->
+<!-- $Revision: 1.12 $ -->
 <!-- splitted from ./en/functions/filesystem.xml, last change in rev 1.2 -->
   <refentry id="function.fgetcsv">
    <refnamediv>
@@ -60,7 +60,7 @@
 $handle = fopen("test.csv", "r");
 while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
     $num = count($data);
-    echo "<p> $num fields in line $row: <br />\n";
+    echo "<p> $num fields in line $row: <br /></p>\n";
     $row++;
     for ($c=0; $c < $num; $c++) {
         echo $data[$c] . "<br />\n";

Reply via email to