iloveitaly on 08/24/11
Last Edited at 08/24/11 10:02pm
function read_csv_file($file) { $file = fopen($file, 'r'); $csv = array(); while (($line = fgetcsv($file)) !== FALSE) { $csv[] = $line; } fclose($file); return $csv;}
Report this snippet Tweet
Comment:
You need to login to post a comment.