Converting/Importing .MDB to .SQL

I have a .mdb file that is 63mb. It contains information that needs to be displayed on the web by tables and rows. I’m needing to have it be placed in .sql for mysql so I am able to do what I need it to do. What would be the best solution to do this? Thanks.

http://www.kitebird.com/articles/access-migrate.html

Have you installed ADODB ?
Documentation @ : http://phplens.com/lens/adodb/docs-adodb.htm#ex1

Create duplicate tables in mysql to store the data, open both databases, use two different connections. One for your .mdb and one for your mysql database.
From thee it is straight forward processing, read all the records form one table in the .mdb and write the data one record @ a time to your mysql database.

use the FREE access (and other dbms) converter from mysql…