Comment 3 for bug 255895

Revision history for this message
ouychai (ae-freeman) wrote :

Oh! I'm wrong

<?php
$file = fopen("news.csv","r");
while (!feof($file))
{
print_r(fgetcsv($file,1024));
print "";
}
fclose($file);
?>

This program for read file "news.csv" and display on web site.