Quick question, I have an old system at work that is in Visual Fox Pro database and is around 9 GB. I would like to migrate the to MySQL and PHP. Any suggestions on software to migrate Visual Fox Pro database to MySQL or do I have to write a script in PHP to convert this data?
Thanks
I have never used Foxpro, but can't you just export the data from Foxpro to a tabbed text file? If so, just import that into your MySQL database using:
load data infile '/path/to/your/file' into table tbl.name (column1, column2, etc);
-- Jason