Export data from Excel to MySQL

I’ve never done it, but if you can’t find a better idea or you can’t find any class that does this (check PHPclasses)… maybe it would work for you if you save the excel files as CVS (I think that’s the extension)… that places the fields separated by ; or , and one row for each line of the file.
You make a form to upload said file and then with the file management functions that php brings, you open it as if it were a text file.
The next step would be taking the data contained in the file and inserting it into the BD. Perhaps the function explode() would be very useful for this.

Well, I hope I have given you a good idea.

See also  Angular
Loading Facebook Comments ...
Loading Disqus Comments ...