[eluser]fildawg[/eluser]
Hi, I'm loading an array from a CSV file. The file looks like this:
Code:
name, email_address
name1, email1
name2, email2
name3, email3
I'm now attempting to loop through the array for further processing. How can I access each array element? I've gotten this far (using print_r to validate the array has content):
Code:
foreach ($data as $field)
{
print_r($field);
}
How can I access each field?
TIA!!