I created a Paradox 9 form for converting DB files to MySQL :-
http://www.millican.info/files/PDX9-ExportMySQL.zip
It's pretty basic but works with most of my files.
Copy the three tables and the form into your working directory and open the form. Click on the required table and press the export button. A folder called 'Export' will be created and MySQL import scripts created in there.
Only problem I've found with it is that my web host has a limit on a single import file size in PHPAdmin. Therefore I added an option to limit the number of records. Eg. if you had an 8100 record DB file and told the form to export 1000 records at a time, from a table called test.db, it will create nine files :-
test.sql
test(02).sql
test(03).sql
...
test(09).sql
The form uses three working tables :- MySQLexportFields.DB, MySQLexportFieldTmp.db, and MySQLexportTables.DB. Unlikely these will conflict with anyone's existing database.
(Just noticed the thread is ancient ! - ah well, maybe it's useful to someone else - lol)