I am current writing a script in php that read a .csv file and push every entry to the database.
The .csv file has rows that ends with ','
a,b,c,d,e,v,f,
r,t,y,u,i,o,e,
when i use fgetcsv($handle, 1000, ",") to read the row, the entire content of the file is read as a single row (a,b,c,d,e,v,f,r,t,y,u,i,o,e,) how can i prevent this.