if you want to connect an MS Access database you have to create an ODBC connection. hope you know how to connect that from administrative tools. then try the below code.
[PHP]
<?php
$odbc = odbc_connect ('dsnName','use rName','Passwor d') or die('Could Not Connect to ODBC Database!');
?>
[/PHP]
Comment