您好,登錄后才能下訂單哦!
本篇內容介紹了“php如何實現人員信息搜索的功能”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
php實現人員信息搜索的功能的方法:1、創建conn.php文件連接人員信息數據庫;2、創建index.php文件;3、通過“ if(isset($_POST["flag"])){...}”等語句實現人員搜索功能即可。
本文操作環境:Windows7系統,PHP7.1版,Dell G3電腦。
php怎么實現人員信息搜索的功能?
PHP+MySQL實現模糊查詢員工信息功能示例
具體如下:
一、代碼
注意兩點:
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> 查詢企業員工的詳細信息</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">查詢企業員工的詳細信息</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>
二、運行結果
瀏覽器選擇的編碼是gbk
“php如何實現人員信息搜索的功能”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。