Showing posts with label CSV File Reading. Show all posts
Showing posts with label CSV File Reading. Show all posts

Monday 6 August 2012

PHP CSV File Reading


CSV File Reading In PHP

<?php
$fp = fopen('example.csv','r') or die("can't open file");
print "<table>\n";
while($csv_line = fgetcsv($fp,1024)) {
    print '<tr>';
    for ($i = 0, $j = count($csv_line); $i < $j; $i++) {
        print '<td>'.$csv_line[$i].'</td>';
    }
    print "</tr>\n";
}
print '</table>\n';
fclose($fp) or die("can't close file");
?>