header("content-type:text/html;charset=utf-8");
//擷取使用者資料
$keywords=$_POST['keywords'];
//
串連資料庫
$c or die('資料庫連結失敗');
//選擇資料庫,設定字元集
mysql_select_db('search');
mysql_set_charset('utf8');
//php模糊查詢
if(empty($keywords)){
$str= "請輸入要查詢的內容";
}else{
$sql="SELECT * FROM user WHERE username LIKE '%$keywords%'";
}
$rs=mysql_query($sql);
$users = array();
while($row=mysql_fetch_assoc($rs)){
//高亮替換
$row['username'] = str_replace($keywords, ''.$keywords.'', $row['username']);
$users[] = $row;
}
//print_r($users);
?>
php模糊查詢
php模糊查詢器之使用者查詢
if($keywords){
echo '
查詢關鍵字 '.$keywords.' 結果是:
';
if($users){
echo "
"; echo "
| UID |
使用者名稱 |
性別 |
郵箱 |
興趣愛好 |
"; foreach ($users as $key => $value){ echo "
"; echo "
| ".$value['uid']." | "; echo "
".$value['username']." | "; echo "
".$value['sex']." | "; echo "
".$value['email']." | "; echo "
".$value['hobby']." | "; echo "
"; } echo "
";
}else {
echo "沒有查詢到相關使用者";
}
}else{
echo "
".$str."
";
}
?>
以上就介紹了php模糊查詢執行個體代碼,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。