Mon Oct 27, 2008 6:35 pm
<?php
$users = file("./demoCSV.csv");
foreach ($users as $user) {
list($name, $email, $phone) = explode(",", $user);
echo "<p>$name ($email) Tel. $phone</p>";
}
?>
<!--
A,[email protected],11111
B,[email protected],22222
-->
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.