How can i retrieve information from a msaccess database with php?
odbc_connect('dbname', 'user', 'pass');
so far i think it's ok
but then comes the problem, i don't know what to do to access tables etc...
Can anyone help me?
if you use odbc-connection then create dns for your db. then make connection variable $conn = odbc_connection("dns","uid","pwd"); -->
$foo = odbc_exec($conn,"select id from table where 1=1");