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. -- found bug on PHP5 https://bugs.launchpad.net/bugs/255895 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
