Hi all.
I have the next code (from php.net)
What is the MAX LIMIT of registers that I can read from my cvs file?PHP Code:$row = 1;
$fp = fopen ("test.csv","r");
while ($data = fgetcsv ($fp, 1000, ",")) {
$num = count ($data);
print "<p> $num fields in line $row: <br>";
$row++;
for ($c=0; $c<$num; $c++) {
print $data[$c] . "<br>";
}
}
fclose ($fp);
20,000 50,000 100,000... ?
thanks.



Your text file is going to bark at you real quick...

Bookmarks