1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <?php
$host = '192.168.0.1' ;
$db = 'taxi' ;
$file = 'c:\Documents and Settings\thom\Mes documents\taxi.mdb';
$user = 'taxi' ;
$pass = 'plop' ;
$connect_string = "Driver={Microsoft Access Driver (*.mdb)};".
"CommLinks=tcpip(Host=$host);".
"ServerName=tpc;".
"DatabaseName=$db;".
"DatabaseFile=$file";
$cnx = odbc_connect( $connect_string , $user , $pass);
if ( !$cnx)
{
echo "Erreur connect" ;
die;
}
$qry = "SHOW TABLES";
$result = odbc_exec($cnx , $qry);
echo "$result";
odbc_close($cnx);
?> |
Partager