主頁 > 知識庫 > PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能示例

PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能示例

熱門標(biāo)簽:拉薩打電話機(jī)器人 哈爾濱400電話辦理到易號網(wǎng) 智能外呼電銷系統(tǒng) 電銷機(jī)器人-快迭智能 寶安400電話辦理 h5 地圖標(biāo)注 高識別電銷機(jī)器人 沈陽人工智能電銷機(jī)器人公司 合肥外呼系統(tǒng)app

本文實(shí)例講述了PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能。分享給大家供大家參考,具體如下:

一、代碼

注意兩點(diǎn):

1、用Notepad+編輯時(shí),格式選擇:【編碼字符集】->【中文】->【gb2312】

2、

meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

conn.php

?php
$connID=mysql_connect("localhost","root","root");
mysql_select_db("db_database13", $connID);
mysql_query("set names gbk");
?>

index.php

?php session_start(); include("conn/conn.php");?>
html>
head>
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
title> 查詢企業(yè)員工的詳細(xì)信息/title>
style type="text/css">
!--
.STYLE4 {font-size: 13px}
.STYLE5 {font-family: "華文琥珀"; font-size: 20px;}
.STYLE6 {color: #990000}
-->
/style>
/head>
body>
table width="450" height="28" border="0" align="center" cellpadding="0" cellspacing="0">
 tr>
  td align="center" class="STYLE5 STYLE6">查詢企業(yè)員工的詳細(xì)信息/td>
 /tr>
/table>
form name="form1" method="post" action="?php echo $_SERVER['PHP_SELF']?>">
table width="450" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#990000">
 tr>
  td width="176" align="center" bgcolor="#FFFFFF">span class="STYLE1 STYLE4">按照員工的編號查詢/span>/td>
  td width="182" bgcolor="#FFFFFF">input name="number" type="text" id="number" />/td>
  td width="84" height="25" bgcolor="#FFFFFF">input type="hidden" name="flag" value="1" />input name="submit" type="submit" value="提交" />/td>
 /tr>
/table>
/form>
table width="450" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#990000">
 tr>
  td width="67" align="center" bgcolor="#FFFFFF" class="STYLE4">編號/td>
  td width="72" align="center" bgcolor="#FFFFFF" class="STYLE4">姓名/td>
  td width="119" align="center" bgcolor="#FFFFFF" class="STYLE4">電話/td>
  td width="182" height="25" align="center" bgcolor="#FFFFFF" class="STYLE4">地址/td>
 /tr>
 ?php
 if(isset($_POST["flag"]))
 {
   $query=mysql_query("select * from tb_employee where number like '%".$_POST["number"]."%'");
   if($query)
   {
     while($myrow=mysql_fetch_array($query))
     {
 ?>
 tr>
  td align="center" bgcolor="#FFFFFF" class="STYLE4">span class="STYLE2">?php echo $myrow[number];?>/span>/td>
  td align="center" bgcolor="#FFFFFF" class="STYLE4">span class="STYLE2">?php echo $myrow[name];?>/span>/td>
  td height="23" align="center" bgcolor="#FFFFFF" class="STYLE4">span class="STYLE2">?php echo $myrow[tel];?>/span>/td>
  td height="23" align="center" bgcolor="#FFFFFF" class="STYLE4">span class="STYLE2">?php echo $myrow[address];?>/span>/td>
 /tr>
 ?php
     }
   }
 }
 ?>
/table>
/body>
/html>

二、運(yùn)行結(jié)果

瀏覽器選擇的編碼是gbk

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php+mysql數(shù)據(jù)庫操作入門教程》、《php+mysqli數(shù)據(jù)庫程序設(shè)計(jì)技巧總結(jié)》、《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • PHP+MySQL使用mysql_num_rows實(shí)現(xiàn)模糊查詢圖書信息功能
  • mysql中使用instr進(jìn)行模糊查詢方法介紹
  • mysql模糊查詢like與REGEXP的使用詳細(xì)介紹
  • 淺談MySQL模糊查詢中通配符的轉(zhuǎn)義
  • Mybatis使用MySQL模糊查詢時(shí)輸入中文檢索不到結(jié)果怎么辦
  • MySQL模糊查詢語句整理集合

標(biāo)簽:山東 巴中 張家口 梅州 林芝 威海 泰州 成都

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能示例》,本文關(guān)鍵詞  PHP+MySQL,實(shí)現(xiàn),模糊,查詢,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP+MySQL實(shí)現(xiàn)模糊查詢員工信息功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章