This works great except when I import, it creates a new table named "temp..." instead of importing the data into the existing table.
The LOAD DATA INFILE syntax wants INTO TABLE tbl_name but I don't see how this gets assigned in the Quick_CSV_import.php file.
dev.mysql.com/doc/refman/4.1/en/loa
...
My CSV file name is the same as the table name (mytablename.csv and mytablename). I thought perhaps it would work like mysqlimport and use the file name as the table name after stripping off the .csv file extension.
dev.mysql.com/doc/refman/4.1/en/mys
...
How do I get the .csv file matched with the existing table? I so appreciate any help. Thank you