Forum Moderators: coopster
# All
$allList = "";
$fileID = "/u2/text/confCall_Contacts/All.csv";
$handle = fopen($fileID, "r");
if ($handle) {
while (!feof ($handle)) {
$buffer = fgets ($handle, 4096);
$buffer = substr ($buffer, 0, -2);
list ($a, $b, $c, $d, $e, $f) = split (",", $buffer, 6);
$allList = $allList . $e . " ";
}
fclose($handle);
Any ideas how I can get it to just hit on the email addresses in the .csv file?
Thanks
DS