fgetcsv: read a csv file
<?php
$fh = fopen("./demoCSV.csv", "r");
while (list($name, $email, $phone) = fgetcsv($fh, 1024, ",")) {
echo "<p>$name ($email) Tel. $phone</p>";
}
?>
<!--
A,[email protected],11111
B,[email protected],22222
-->
Related examples in the same category