<?
$keyword=$_POST[keyword];
$cate_id=$_POST[cate_id];
if ($keyword== " ") {
echo "<h3>ERROR : กรุณากรอกคำที่ต้องการค้นหาด้วยค่ะ</h3>";
exit();
}
?>
<html>
<head><title>ผลการค้นหา</title><meta http-equiv="Content-Type" content="text/html; charset=windows-874"></head>
<body>
<h3><b>ผลการค้นหาข้อมูลจากคำว่า "<?=$keyword?>" </b><br>
<?
include "function.php";
include "connect.php";
$sql="select * from alai order by cate_id desc";
$result=mysql_db_query($dbname, $sql);
$sqlquery=mysql_db_query($dbname,$sql);
echo "
<table width='90%' border='0'>
<tr bgcolor='#0099FF'>
<td width='2%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>ลำดับ</font></b></center></td>
<td width='4%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>วันที่</font></b></center></td>
<td width='3%'><center><b><font color=000000' font size='2' face='MS Sans Serif'>เวลา</font></b></center></td>
<td width='4%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>เลขที่บิล</font></b></center></td>
<td width='5%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>หมายเลขสมาชิก</font></b></center></td>
<td width='2%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>จำนวน</font></b></center></td>
<td width='5%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>ชื่อผู้เปิดบิลขาย</font></b></center></td>
<td width='5%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>ชื่อผู้หยิบ</font></b></center></td>
<td width='5%'><center><b><font color='000000' font size='2' face='MS Sans Serif'>หมายเหตุ</font></b></center></td>
</tr><br>";
$no=1;
$sql="select * from alai where date_today='$i' and time_today = curdate()";
$result=mysql_db_query($dbname,$sql);
$total=mysql_num_rows($result);