您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在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中使用MySQL實現一個模糊查詢員工信息功能,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。