The MyISAM storage engine stores MySQL tables in three files. The .frm file contains the column names, data types, and other structural data of the table. The .MYD file contains the rows, or the actual data in that table. The .MYI file contains the index information, but that file is not important for this project.
I need a PHP script that can convert the .frm and .MYD files into SQL queries that recreate that table. The user should be able to upload those two files through a HTML form, a…
