> I have to read large CSV file upto 10 MB size. I tried to read each line by > using getcsv() method, but cannot worthy. I have to make some checking the > contents of the CSV files such as any duplicate row, or any row missing > contents etc.
I would consider using a temporary table, provided we have to finally address an sql database. If we could pass LOAD INFILE.. statement to a temp table, and then use sql queries, that would be less painful for us, as well as our server, it is my assumption. -- Jiju Thomas Mathew http://www.php-trivandrum.org
_______________________________________________ New York PHP Community Talk Mailing List http://lists.nyphp.org/mailman/listinfo/talk NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php
