Yes, you should have ODBC drivers for Unix installed, or the best way is probably to use PDO with php5.
* Stolen from other places on the network, not verified.
try { $dbh = new PDO("odbc:Driver={Microsoft Access Driver (*.mdb)};Dbq=C:\accounts.mdb;Uid=Admin"); } catch (PDOException $e) { echo $e->getMessage(); }
Jeremy morgan
source share