本篇文章給大家分享的是有關(guān)怎么在PHP中使用MySQL實(shí)現(xiàn)一個模糊查詢員工信息功能,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
創(chuàng)新互聯(lián)長期為數(shù)千家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為銀川企業(yè)提供專業(yè)的網(wǎng)站制作、成都網(wǎng)站制作,銀川網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。一、代碼
注意兩點(diǎn):
1、用Notepad+編輯時,格式選擇:【編碼字符集】->【中文】->【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
以上就是怎么在PHP中使用MySQL實(shí)現(xiàn)一個模糊查詢員工信息功能,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
標(biāo)題名稱:怎么在PHP中使用MySQL實(shí)現(xiàn)一個模糊查詢員工信息功能-創(chuàng)新互聯(lián)
文章來源:http://m.rwnh.cn/article36/cecipg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、電子商務(wù)、網(wǎng)站內(nèi)鏈、企業(yè)網(wǎng)站制作、搜索引擎優(yōu)化、手機(jī)網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容