Ahhh Logan - I shall tell thee of the thing that shall stop much fannying about with ODBC connections in Windows and let you connect straight to an .mdb
function odbc_connect_mdb($filename, $user="", $password="")
{
$connStr="DRIVER={Microsoft Access Driver (*.mdb)};DBQ=$filename";
return odbc_connect($connStr, $user, $password);
}
$dbh3=odbc_connect_mdb("c:\databases\fpnwind.mdb") or die ("Couldn't connect THREE");
$query3="SELECT TOP 10 * FROM PRODUCTS";
$sth3=odbc_exec($dbh3, $query3) or die ("FAILURE 3");
That's well old, that code - hence no spaces around the equals signs, but it'll still help.
I also started with this for the Jet SQL reference http://www.devguru.com/Technologies/jetsql/quickref/jet_sql_list.html
And think I might have paddled around a bit here http://www.mvps.org/access/
Access did actually have a lot of stuff two years ago that MySQL doesn't, like subqueries and crosstabs, but that's still no reason not to run screaming from it.