jkewlo Posted March 17, 2008 Share Posted March 17, 2008 ok im trying to make a check.php page but dont know how i will do it with php/ms access mysql would be a zip to do. but not ms access being its a pain in the ash Link to comment https://forums.phpfreaks.com/topic/96594-ms-access-log-in-script/ Share on other sites More sharing options...
lemmin Posted March 17, 2008 Share Posted March 17, 2008 $conn = new COM("ADODB.Connection") or die("Cannot start ADO"); $conn->Open("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=your db.mdb"); $query = $conn->Execute("SELECT field FROM Table"); while (!$query->EOF) echo $query->Fields("field")->value; Good luck! Link to comment https://forums.phpfreaks.com/topic/96594-ms-access-log-in-script/#findComment-494303 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.