I have the following CSV
Date,Event,Description 24/01/2010,Football,Football practice for all Years. 24/01/2010,Cricket,Cricket Practice for all Years. 25/01/201
As mentioned above you do want to use fgetcsv(). Here's how you might do it (untested):
fgetcsv()
\n"; echo 'Event: ' . $data[0] . "\n\n"; } } fclose($handle); } ?>