Google
Showing posts with label read CSV. Show all posts
Showing posts with label read CSV. Show all posts

Saturday, July 25, 2009

Read CSV file through PHP

Read CSV file through PHP

/*

$file_handles = fopen("my.csv", "r");

while (!feof($file_handles) ) {

$line_of_texts = fgetcsv($file_handles, 1024);

print $line_of_texts[0] . $line_of_texts[1]. $line_of_texts[2] . "
";

}

fclose($file_handle);

*/