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 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
laravel에 yo에서 angularJs&coffeescript를 사용할 수 있도록 한다.먼저 yo 명령을 사용할 수 있어야하므로 아래에서 설치 global에 설치한 곳에서 laravel의 프로젝트 루트로 이동. 클라이언트 코드를 관리하는 디렉토리를 만들고 이동합니다. 클라이언트 환경 만들기 이것으로 히...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.