Here is what I am doing.. I am using a third party that automates a script to a folder on my server. From here I have a MySql statement that I load through phpMyAdmin into my corresponding databases. This is the tails end of my code...
// tab delimited code
load data infile 'textPath/textfile.txt' into table myTableName
or
// comma separated
load data infile 'textPath/textfile.txt' into table myTableName FIELDS TERMINATED BY ',' ENCLOSED BY '\"';
and now I would like to know if I can add an excel file the same way. I am sure there is something extra that tells the database to recognize this as an excel file. Any ideas on how to do this would be helpful.