|
|
|
ทำช่อง search พอค้นหาเจอแล้ว มันยังขึ้นข้อมูลที่โชว์ตอนแรกอ่ะครับ แก้ไขยังไงครับ ขอบคุณครับ |
|
|
|
|
|
|
|
ลองดูครับ
Code (PHP)
<tr>
<td height="45" align="center" valign="top" ><h3>
<div class="title_h" >
<form name="frmSearch" method="get" action="<?=$_SERVER['SCRIPT_NAME'];?>"><h5 align="right">ค้นหา
<input name="txtKeyword" type="text" id="txtKeyword" value="<?=$_GET["txtKeyword"];?>">
<input type="submit" value="Search">
</h5>
</form>
<p><strong>ตรวจสอบสถานะ</strong><br />
</p>
</div></h3>
<table width="100%" border="1" cellspacing="2" cellpadding="2" bgcolor="#FFFFCC" style="border:5px solid #C60;">
<tr>
<td style="width:65px;"><div align="center"><strong>ลำดับที่</strong></div></td>
<td style="width:60px";><div align="center"><strong>ฃื่อผู้ใช้</strong></div></td>
<td><div align="center"><strong>วันที่ส่งซัก</strong></div></td>
<td><div align="center"><strong>วันที่มารับ</strong></div></td>
<td><div align="center"><strong>ราคา (บาท)</strong></div></td>
<td><div align="center"><strong>สถานะ</strong></div></td>
</tr>
<?php
if(!empty($_GET["txtKeyword"]))
{
$objConnect = mysql_connect("localhost","root","12345") or die("Error Connect to Database");
$objDB = mysql_select_db("laundry");
// Search By Name or Email
$sql_show = "SELECT * FROM service2 WHERE (id_name LIKE '%".$_GET["txtKeyword"]."%' )";
$result_show = mysql_query($sql_show) or die ("Error Query [".$strSQL."]");$i=0;
} else
{
include ("connect.php");
$sql_show = "select * from service2 where status !=''";
$result_show = mysql_query($sql_show) or die(mysql_error());$i=0;
}
while($row_show = mysql_fetch_array($result_show))
{
?>
<tr>
<td style="width:45px;"align="center"><?=++$i?></td>
<td align="center"><?=$row_show['id_name']?></td>
<td align="center"><?=$row_show['datein']?></td>
<td align="center"><?=$row_show['dateout']?></td>
<td align="right"><?=number_format(($row_show['total']),2)?></td>
<td align="center"><? if($row_show['status']=='pass'){ echo "<font color=\"red\">กำลังดำเนินการ</font>";} else { echo "<font color=\"green\">เสร็จสิ้น</font>";}?></td>
</tr>
<?php
}
mysql_close($objConnect);
?>
</table>
<p> </p>
<p> </p>
<p> </p>
<p><br/>
</p></td>
</tr>
|
|
|
|
|
Date :
2014-07-22 13:53:16 |
By :
arm8957 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|