Reading CSV data from a file : CSV File « File Directory « PHP






Reading CSV data from a file

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








Related examples in the same category

1.Generating comma-separated data
2.Making a CSV-formatted string
3.Parsing CSV Strings
4.Read csv file
5.Tell the web client to view the CSV file in a seprate program
6.fgetcsv.php
7.Printing comma-separated data
8.Putting comma-separated data into a string