$filepath=__FILE__;
//echo __FILE__;
$newarray=explode("\",$filepath);
$num=count($newarray)-1;
$filenamelen=strlen($ newarray[$num]);
$totallen=strlen(__FILE__);
$subnum=$totallen-$filenamelen-5;
$tmppath=substr(__FILE__,0,$subnum);
$newpath=$tmppath." dbdb.mdb"; //Database path
include "../adodb/adodb.inc.php"; //Load adodb
$conn = ADONewConnection('access'); //Establish accessl connection
$conn-> ;Pconnect("Driver={Microsoft Access Driver (*.mdb)};Dbq=$newpath");
$conn->execute("set names utf8");
?>
The above introduces the ADODB database Access connection, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.