Ok, I have some BIG files that I got off of Excel. They are Comma Seperated, AND one record per line (Convenient).
I am used to programming in Java where you can read a file one line at a time. There is also a function that will put data into an array with an optional delimiter (such as a comma). After reading the PHP manual about files, it seems that the entire file is read into an array.
This is my problem - These files are WAY too big to be put into an array. I am wanting to read one line at a time and then send it to a Mysql database.
Does anyone know of a PHP way of reading a file one line at a time?