รายละเอียดของการตอบ ::
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<? include "connect.php"; ?>
<table width="760" border="0" align="center">
<tr>
<th width="700" height="150" align="center" scope="col"><img src="pictures/หน้าหลัก copy.jpg" width="800" height="150"></th>
</tr>
<tr>
<th height="2014" align="center" valign="top" scope="row"><form method="post" action="reports_book.php"><br>
<div align="center" class="style1 style1">รายงานการจอง</div>
<br>
ระหว่างวันที่
<select name="bdate">
<?
for($i=1; $i<=31; $i++){
$sdate1.= "<option value=$i>$i</option>";
}
echo $sdate1;
?>
</select>
เดือน
<select name="bmonth" >
<?
for($i=1; $i<=12; $i++){
$smonth1.= "<option value=$i>$i</option>";
}
echo $smonth1;
?>
</select>
ปี
<select name="byear" >
<?
$y = date("Y");
for($i=0; $i<=2; $i++){
$syear1.= "<option value=$y>$y</option>";
$y += 1;
}
echo $syear1;
?>
</select> <br><br>
ถึงวันที่
<select name="bdate1">
<?
for($i=1; $i<=31; $i++){
$sdate2.= "<option value=$i>$i</option>";
}
echo $sdate2;
?>
</select>
เดือน
<select name="bmonth1" >
<?
for($i=1; $i<=12; $i++){
$smonth2.= "<option value=$i>$i</option>";
}
echo $smonth2;
?>
</select>
ปี
<select name="byear1" >
<?
$y = date("Y");
for($i=0; $i<=2; $i++){
$syear2.= "<option value=$y>$y</option>";
$y += 1;
}
echo $syear2;
?>
</select><br><br>
<input type="submit" name="Submit" value="ค้นหา" />
<br/>
<br />
</form>
<?
$d1 = $_POST["bdate"];
$d2 = $_POST["bmonth"];
$d3 = $_POST["byear"];
$d4 = $_POST["bdate1"];
$d5 = $_POST["bmonth1"];
$d6 = $_POST["byear1"];
echo $d1 . " - " . $d2 . " - " . $d3 ."<br>". $d4 . " - " . $d5 . " - " . $d6 ;
$sql = "select * from book where book_datebook between '" . $d3 ."-". $d2 ."-". $d1 . "' and '" . $d6 ."-". $d5 ."-". $d4 . "' group by book_datebook";
?>
<?
$result = mysql_query($sql);
if ($result) {
?>
<table width="600" border="0">
<tr>
<th width="200" align="center" bgcolor="#CCCCCC"><b>หมายเลขจอง</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>รหัสลูกค้า</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>วันที่จอง</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>สถานที่รับ</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>สถานที่ส่ง</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>วันที่เดินทาง</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>เวลาเดินทาง</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>วันที่กลับ</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>จำนวนคน</b></th>
<th width="200" align="center" bgcolor="#CCCCCC"><b>ค่ามัดจำ</b></th>
</tr>
<?
while($rs=mysql_fetch_array($result)){
?>
<tr>
<th scope="col"><?=$rs[book_id]?></th>
<th scope="col"><?=$rs[mem_id]?></th>
<th scope="col"><?=$rs[book_datebook]?></th>
<th scope="col"><?=$rs[book_datego]?></th>
<th scope="col"><?=$rs[book_dest]?></th>
<th scope="col"><?=$rs[book_num]?></th>
<th scope="col"><?=$rs[book_location]?></th>
<th scope="col"><?=$rs[book_timego]?></th>
<th scope="col"><?=$rs[book_dateback]?></th>
<th scope="col"><?=$rs[book_deposit]?></th>
</tr>
</table>
<?
}
}
?>
<br/>
<br /> </tr>
</table>
พี่คับแล้วมันก็แสดงแค่บรรทัดเดียวคับ