My first post here. I created a small project using php+ms access+apache under windows and used the following code to connect to the access database
Code: Select all
$db_conn = new COM("ADODB.Connection");
$connstr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=". realpath("./auth.mdb").";";
$db_conn->open($connstr);Thanks & Regards
JayaKrishnan