I have a csv file where i need to strip the comma deliminator
from $BN and join its contents to $address.
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
{
$customerid = $data[0];
$cust = $data[1];
// BN
$BN = $data[2];
// Address
$address = $data[3];
What is the best way to go about this?




Bookmarks