Skip to content

Instantly share code, notes, and snippets.

@cookpete
cookpete / csv2table.php
Last active October 11, 2015 10:28
Convert CSV to HTML table
function csv2table($file, $delimiter = ','){
$handle = fopen($file, 'r');
while($line = fgetcsv($handle)) $str .= '<tr><td>'.implode('</td><td>', $line).'</td></tr>';
fclose($handle);
return '<table>'.$str.'</table>';
}