I can\'t get the new code I\'ve written to skip the first row (header) as the code I was using before did (see bottom).
I\'m not receiving any errors, but just can\
Why even count? Just get the headers before looping.
$column_headers = fgetcsv($file); while(!feof($file)) { ...
Also, you're only assigning the file pointer to the variable.