I am wondering if anyone is able to point me in the right direction on how to go about importing an existing data stored within a MS ACCESS database, to be input into a SQL DB i have created.
Is a .csv with some Php loop the best way to go about this, or is there a simple one button approach (I am forever the optimist!)
If your “sql db” is mysql then one way would be to create a csv dump of the access tables, then use LOAD DATA INFILE command.
Should be easy enough to create a little test on a single table, the big bugbear could be permissions if you are on a shared server. The csv file must reside on that server IIRC.