PHP+MySQL 직원 정보 모호 조회 기능 예시 구현

4497 단어 PHPMySQL모호 조회
이 사례 는 PHP+MySQL 이 직원 의 정 보 를 모호 하 게 조회 하 는 기능 을 실현 하 는 것 을 보 여 준다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
코드
두 가지 주의:
1.Notepad+로 편집 할 때 형식 선택:[인 코딩 문자 집합]->[중국어]->[gb 2312]
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>

2.운행 결과
브 라 우 저가 선택 한 인 코딩 은 gbk 입 니 다.

더 많은 PHP 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 논문 에서 말 한 것 이 여러분 의 PHP 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기