อยากทำระบบค้นหาแบบใน page เดียวแต่แบ่งเป็นสองหน้าครับ
ตามโค้ดมันแสดงผลปกติครับผมแต่อยากให้เวลาค้นหาแล้วมันตัดหน้าหลักนี้ออกแล้วให้แสดงเฉพาะรายการที่หาเจอมีวิธีการอย่างไรครับ
Code
<?php
$host = "localhost";
$user = "root";
$pass = "1234";
$dbname ="eoffice";
$conn = mysql_connect($host,$user,$pass) or die (" Host connect Err");
mysql_select_db($dbname) or die ("DB select Err");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=TIS-620" />
<title>Untitled Document</title>
<style type="text/css">
<!--
body {
font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
background-color: #42413C;
margin: 0;
padding: 0;
color: #000;
}
ul, ol, dl {
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
margin-top: 0;
padding-right: 15px;
padding-left: 15px;
}
a img {
border: none;
}
a:link {
color: #42413C;
text-decoration: underline;
}
a:visited {
color: #6E6C64;
text-decoration: underline;
}
a:hover, a:active, a:focus {
text-decoration: none;
}
.container {
width: 960px;
background-color: #FFF;
margin: 0 auto;
}
.header {
background-color: #ADB96E;
}
.sidebar1 {
float: left;
width: 180px;
background-color: #EADCAE;
padding-bottom: 10px;
}
.content {
padding: 10px 0;
width: 780px;
float: left;
text-align: center;
}
.content ul, .content ol {
padding: 0 15px 15px 40px;
}
ul.nav {
list-style: none;
border-top: 1px solid #666;
margin-bottom: 15px;
}
ul.nav li {
border-bottom: 1px solid #666;
}
ul.nav a, ul.nav a:visited {
padding: 5px 5px 5px 15px;
display: block;
width: 160px;
text-decoration: none;
background-color: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {
background-color: #ADB96E;
color: #FFF;
}
.footer {
padding: 10px 0;
background-color: #CCC49F;
position: relative;
clear: both;
}
.fltrt {
float: right;
margin-left: 8px;
}
.fltlft {
float: left;
margin-right: 8px;
}
.clearfloat {
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}
-->
</style></head>
<body>
<div class="container">
<div class="header">
</div>
<div class="sidebar1">
<ul class="nav">
<li><a href="#"> หน้าแรก</a></li>
<li><a href="#">เข้าสู่ระบบ</a></li>
<li><a href="#">ติดต่อทีมงาน</a></li>
</ul>
<p> </p>
<!-- end .sidebar1 --></div>
<div class="content">
<?php
$sql = " select *from i_student";
mysql_query("SET NAMES TIS620");
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client=tis620");
mysql_query("SET character_set_connection=tis620");
$result = mysql_db_query($dbname,$sql);
echo'<table>
<tr>';
echo '<td colspan="2"><center><b><font color=#0000ff><h3>นักเรียนที่สามารตรวจสอบได้</b></font></h3></center></td>
</tr>';
echo'<tr bgcolor=pink>
<td width="269">ชื่อ</td>
<td width="355">นามสกุล</td>
</tr>';
while ($array =mysql_fetch_array($result))
{
$stid = $array['stid'];
echo' <tr bgcolor=#99ffcc> ';
echo '<td> '.$array['dname'].' '.$array['firstname'].'</td>';
echo '<td> '.$array['lastname'].'</td>';
echo' </tr>';
}
echo' </table>';
echo' <h1> </h1>
</div>
<div class="footer">
<p>ระบบติดตามนักเรียนโรงเรียนสุวรรณวิจิตรวิทยา ตำบลกังแอน อำเภอปราสาท จังหวัดสุรินทร์</p>
</div>
</div>
</body>
</html>';
?>
Tag : PHP, MySQL
Date :
2012-09-01 21:38:46
By :
maisurin
View :
1036
Reply :
2
จากส่วนตัวที่เคยทำมาการค้นหาข้อมูลจาก db เราจะแสดงข้อมูลหลัก ๆ ได้ 3 แบบ คือ
1. เมื่อค้นหาแล้วให้แสดงข้อมูลอยู่หน้าเดิม เพจเดิม
2. เมื่อค้นหาแล้วให้ข้อมูลไปแสดงที่เพจใหม่
3. เมื่อค้นหาให้ข้อมูลแสดงแบบ popup
จาก code ที่ให้มามันเป็นการแสดงทั้งหมดที่เรียกมาจาก db ยังไม่ได้มีการค้นหาแต่อย่างไร
ลองศึกษาเรื่อง Go to : PHP MySQL Search Record
แล้วติดตรงไหนมาอธิบายเพิ่มให้หน่อยครับจะได้ช่วยได้
Date :
2012-09-02 10:02:15
By :
apisitp
ขอบคุณครับผมถ้าไม่ได้จะมาถามใหม่ครับ
Date :
2012-09-02 10:39:28
By :
maisurin
Load balance : Server 01