<?php
$dbc=new com(“adodb.connection”);
$dbc->open(“Provider=Microsoft.Jet.OLEDB.4.0;Data Source=”.realpath(“article.mdb”));
$rs=$dbc->execute(‘select * from content’);
$i=0;
while(!$rs->eof) {
$i+=1;
echo $rs->Fields(title);
$rs->movenext();
}
?>