i'm the beginer for php, may i ask for the code for connecting phph with the microsoft access. thankyou!
Hi Warner,
To connect Ms-Access using php.. $TABLE=TABLE-NAME; $dbConn = odbc_connect("DataSourceName","user","secrete"); $query = "select * from $TABLE"; $exec = odbc_Exec($dbConn,$query,1); Hope this will work.. --Shastry
thanks, Shastry.