|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
完成一个功能齐全的动态站点 PHP经由过程ADO体例毗连Access数据库,以下代码:
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>经由过程
ADO体例
毗连
ACCESS数据库 - www.cxybl.com</title> <link rel="stylesheet" type="text/CSS" href="style.css"> <style type="text/css"> <!-- .STYLE1 {color: #FFFFFF} --> </style> </head> <?php include_once("conn.php"); ?> <body topmargin="0" leftmargin="0" bottommargin="0"> <table width="300" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="25" bgcolor="#0099CC"><div align="center" class="STYLE1">图手札
息</div></td> </tr> <tr> <td bgcolor="#0099CC"><table width="300" height="50" border="0" align="center" cellpadding="0" cellspacing="1"> <tr> <td width="167" height="25" bgcolor="#FFFFFF"><div align="center">书名</div></td> <td width="130" bgcolor="#FFFFFF"><div align="center">出书
社</div></td> </tr> <?php $sql="select * from tb_book"; $rs=new com("adodb.recordset"); $rs->open($sql,$conn,1,3); while(!$rs->eof) { ?> <tr> <td height="25" bgcolor="#FFFFFF"><div align="center"> <?php $fields=$rs->fields(bookname);echo $fields->value;?></div></td> <td height="25" bgcolor="#FFFFFF"><div align="center"> <?php $fields=$rs->fields(pub);echo $fields->value;?></div></td> </tr> <?php $rs->movenext; } ?> </table></td> </tr> </table> </body> </html>
复制代码 conn.php:
- <?php $conn = new com("adodb.connection"); $connstr="driver={microsoft access driver (*.mdb)}; dbq=". realpath("data/db_database12_185.mdb"); $conn->open($connstr); ?>
复制代码 一些真正的强人总会搞出新玩意来丢给你,你不学就落后了,也印证了前人的经验,果然是学无止境啊! |
|