?php
公司主營業(yè)務(wù):成都網(wǎng)站建設(shè)、成都做網(wǎng)站、移動(dòng)網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)推出錦江免費(fèi)做網(wǎng)站回饋大家。
mysql_connect("服務(wù)器ip","數(shù)據(jù)庫賬號(hào)","數(shù)據(jù)庫密碼")or?die("數(shù)據(jù)庫連接失敗");
mysql_select_db("選擇數(shù)據(jù)庫");
$key?=?"服裝";
$sql?=?"select?*?from?items?where?aa?like?'%".$key."%'";
$result?=?mysql_query($sql);
if(mysql_num_rows($result)){
//判斷如果查詢到有數(shù)據(jù)就進(jìn)行調(diào)用
}
PHP查詢到的數(shù)據(jù)存放到數(shù)組里面,一般使用$arr[]=$row的方式實(shí)現(xiàn),$row是mysql_fetch_array獲得的一行數(shù)據(jù),本身是一個(gè)數(shù)組,執(zhí)行上面的語句之后,這一行會(huì)添加存放在額為數(shù)組$arr的最后。
典型的例子代碼是這樣的:mysql_connect('127.0.0.1',
'root',
'123456');$sql='select
*
from
test.tab';if
($res=mysql_query($sql)){
while($row=mysql_fetch_array($res))
$result[]=$row;
mysql_free_resule($res);}else
echo
"執(zhí)行SQL語句:$sql\n錯(cuò)誤:".mysql_error();echo
'查詢結(jié)果在下面的額為數(shù)組里面:';print_r($result);echo
'';
假如 數(shù)據(jù)為 $value
$temp=explode(",",$value);?
foreach($temp?as?$v){
$result[$v]=1;
}
然后html的時(shí)候可以這樣:
if($result['admin']){
echo?'input?type=checkbox?/';
}
同理其他類型,可以foreach?輸出
本文實(shí)例講述了php實(shí)現(xiàn)通用的從數(shù)據(jù)庫表讀取數(shù)據(jù)到數(shù)組的函數(shù)。分享給大家供大家參考。具體分析如下:
此函數(shù)不關(guān)心表結(jié)構(gòu),只需要指定表名、結(jié)構(gòu)和查詢條件既可以對(duì)表進(jìn)行通用查詢操作,非常實(shí)用。
function listmytablerows($table, $name, $field, $where, $textID) { / / Connect to the database and query execution connect (); $Sql = "select * from". $table. "". $where. "ORDER BY". $field; $Req = mysql_query($sql); $Res = mysql_num_rows($req); ? Select name = "?php echo $name; ?" id="?php echo $textID; ?" option value="" ____/ option ? Php / / We do a loop that will read the information for each record while ($data = mysql_fetch_array($res)) { / / We display the information from the current record ? Option value = "?php echo $data['id']; ?" ?php echo $data[$field]; ? / Option ? Php } ? / Select ? Php } ?
?php
mysql_connect("服務(wù)器ip","數(shù)據(jù)庫賬號(hào)","數(shù)據(jù)庫密碼")or?die("數(shù)據(jù)庫連接失敗");
mysql_select_db("選擇數(shù)據(jù)庫");
$key?=?"服裝";
$sql?=?"select?*?from?items?where?aa?like?'%".$key."%'";
$result?=?mysql_query($sql);
if(mysql_num_rows($result)){
//判斷如果查詢到有數(shù)據(jù)就進(jìn)行調(diào)用
}/pre
評(píng)論
加載更多