Hi Yurij,
yes this is possible, but not with PHPs odbc_*-function. Instead you must
use a COM object. Here's a code snipped which requires ADO to be installed
on your machine. If you have IIS 4 or M$ PWS installed on your machine
there's a greate chance you have ADO installed as well.
<?
$dbc = new COM("ADODB.Connection");
$connstr = "DRIVER={Microsoft Access Driver (.mdb)};";
$connstr .= "DBQ=C:\path\to\db\test.mdb;uid=;pwd=;";
$dbc->open($connstr);
$rs = $dbc->execute("SELECT FROM test");
while(!$rs->eof()) {
print $rs->fields['id']->value();
print "|".$rs->fields['name']->value()."<br>";
$rs->movenext();
}
$dbc->close();
?>