For those experienced with array processing in PHP, from a practical "real world" standpoint, I would like to know what maximum size limitations I am going to be faced with.
Hopefully, the following won't be a problem.
I need to come up with a way to read in a .csv file with 3 fields and about 1,000 records...do some minor text parsing, and then autoINSERT all of the records into a MySQL table...maybe via a loop?
Since this script may also end up being used by others, do you see any problems in a 'typical' PHP installation (if there is such a thing) handlling this amount of data?
Or, would it be more practial to read in one record at a time, parse it, and INSERT to the DB one-record-at-a-time?
Thank you!