php模糊查詢執行個體代碼

來源:互聯網
上載者:User
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 " "; foreach ($users as $key => $value){ echo " "; echo " "; echo " "; echo " "; echo " "; echo " "; echo " "; } echo "
UID 使用者名稱 性別 郵箱 興趣愛好
".$value['uid']."".$value['username']."".$value['sex']."".$value['email']."".$value['hobby']."
";
}else {
echo "沒有查詢到相關使用者";
}
}else{
echo "

".$str."


";
}
?>

以上就介紹了php模糊查詢執行個體代碼,包括了方面的內容,希望對PHP教程有興趣的朋友有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.