代碼拷貝框
[Ctrl+A 全部選擇 然后拷貝]
很久沒有發(fā)帖了,把我常用的一些php類文件分享出來。 如果您加了新功能,或者是有改進(jìn),請與大家一起分享。
<?php $db_config["hostname"] = "127.0.0.1"; //服務(wù)器地址 $db_config["username"] = "root"; //數(shù)據(jù)庫用戶名 $db_config["password"] = "root"; //數(shù)據(jù)庫密碼 $db_config["database"] = "wap_blueidea_com"; //數(shù)據(jù)庫名稱 $db_config["charset"] = "utf8"; include('db.php'); $db = new db(); $db->connect($db_config); //例:查詢表 table_name 中 cid=1的所有記錄。 $row = $db->row_select('table_name', 'cid=1'); ?>
更詳細(xì)的使用方法,請參考 db類文件中的注釋。
經(jīng)典論壇交流: http://bbs.blueidea.com/thread-2841335-1-1.html
本文鏈接:http://m.95time.cn/tech/program/2008/5665.asp
出處:藍(lán)色理想
責(zé)任編輯:bluehearts
◎進(jìn)入論壇網(wǎng)絡(luò)編程版塊參加討論
|