PHP+MySQL实现模糊查询员工信息功能示例
程序员文章站
2024-02-01 21:16:28
本文实例讲述了php+mysql实现模糊查询员工信息功能。分享给大家供大家参考,具体如下:
一、代码
注意两点:
1、用notepad+编辑时,格式选择:【编码字符集...
本文实例讲述了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相关内容感兴趣的读者可查看本站专题:《php+mysql数据库操作入门教程》、《php+mysqli数据库程序设计技巧总结》、《php面向对象程序设计入门教程》、《php数组(array)操作技巧大全》、《php字符串(string)用法总结》及《php常见数据库操作技巧汇总》
希望本文所述对大家php程序设计有所帮助。
推荐阅读
-
PHP+MySQL实现模糊查询员工信息功能示例
-
java实现的连接数据库及模糊查询功能示例
-
java实现的连接数据库及模糊查询功能示例
-
PHP+MySQL使用mysql_num_rows实现模糊查询图书信息功能
-
ThinkPHP框架实现用户信息查询更新及删除功能示例
-
Angular实现的内置过滤器orderBy排序与模糊查询功能示例
-
Angular实现下拉框模糊查询功能示例
-
Angular实现的自定义模糊查询、排序及三角箭头标注功能示例
-
AngularJS模糊查询功能实现代码(过滤内容下拉菜单排序过滤敏感字符验证判断后添加表格信息)
-
jQuery简单实现的HTML页面文本框模糊匹配查询功能完整示例