當(dāng)前位置:首頁文章首頁 IT學(xué)院 PHP

PHP鏈接ACCESS數(shù)據(jù)庫的實(shí)現(xiàn)代碼

作者:  來源:  發(fā)布時(shí)間:2011-5-27 15:27:32  點(diǎn)擊:

本文章分享的是PHP鏈接ACCESS數(shù)據(jù)庫的實(shí)現(xiàn)代碼,希望對(duì)各位朋友有所幫助。下面就是實(shí)現(xiàn)PHP鏈接ACCESS數(shù)據(jù)庫的代碼:

<?  
$dbc=new com("adodb.connection");  
$dbc->open("driver=microsoft access driver (*.mdb);dbq=c:/member.mdb");  
$rs=$dbc->execute("select * from tablename");  
$i=0;  
while (!$rs->eof){  
$i+=1  
$fld0=$rs->fields["UserName"];  
$fld0=$rs->fields["Password"];
....  
echo "$fld0->value $fld1->value ....";  
$rs->movenext();  
}  
$rs->close();
?> 

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z