รายละเอียดของการตอบ ::
<?
session_start();
include"connect.php";
?>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874"/>
<html><body>
<table width="996" height="368" border="1" align="center">
<tr bgcolor="#FFFFFF">
<td height="146" colspan="6"><img src="new-logo1.jpg" width="225" height="142"><img src="original_iBurst_background_white.jpg" width="790" height="127"></td>
</tr>
<tr bgcolor="#FF0033">
<td width="256" height="28"><div align="center"><a href="index.php">หน้าหลัก</a></div></td>
<td width="145"><div align="center"><a href="money.php">วิธีการชำระเงิน</a></div></td>
<td width="205"><div align="center"><a href="if.php">เงื่อนไขการจอง</a></div></td>
<td width="157"><div align="center"><a href="check.php">ตรวจสอบค่าบริการ</a></div></td>
<td width="400"><div align="center"><a href="contact.php">ติดต่อเรา</a></div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="184"><p> </p>
<table width="200" border="1" align="center">
<tr bgcolor="#FF0000">
<td><div align="center"><a href="deposit.php">แจ้งชำระค่ามัดจำ</a></div></td>
</tr>
<tr bgcolor="#FFFF00">
<td><div align="center"><a href="update_deposit.php">Update สถานะค่ามัดจำ</a></div></td>
</tr>
<tr bgcolor="#FF0000">
<td><div align="center"><a href="money_total.php">แจ้งชำระค่าเช่ารถ</a></div></td>
</tr>
<tr bgcolor="#FFFF00">
<td><div align="center"><a href="update_total.php">Update สถานะค่าเช่ารถ</a></div></td>
</tr>
</table>
<p><img src="preview.jpg" width="256" height="411"></p></td>
<td colspan="3"><p>ข้อมูลการชำระค่าเช่ารถ</p>
<p>
<?
$no=0;
include"connect.php";
$sql="select * from `order` where sta_id=4 or sta_id=5 or sta_id=6 ";
$ex=mysql_query($sql, $conn);
$result=mysql_db_query($dbname, $sql);
$num=mysql_num_rows($result);
if($num>0){
$show.="<table width=800 cellpadding=0 align=center border=1>";
$show.="<tr bgcolor=#00cccc align=center>
<td>เลขที่ใบจอง</td>
<td>ชื่อ-นามสกุล</td>
<td>ค่าเช่ารถ</td>
<td>สถานะการชำระเงิน</td>
<td>พิมพ์ใบเสร็จค่าเช่ารถ</td>
</tr>";
while($rs=mysql_fetch_array($ex)){
$show.="<td align=center>$rs[order_id]</td>";
$show.="<td align=center>$rs[order_name]</td>";
$show.="<td align=center>$rs[order_total]</td>";
if($rs[sta_id] == 4)
$show.="<td align=center>รอการชำระเงินค่าเช่า</td>";
else if($rs[sta_id] == 5)
$show.="<td align=center>ตรวจสอบการชำระเงินค่าเช่ารถ</td>";
else if($rs[sta_id] == 6)
$show.="<td align=center>ชำระเงินค่าเช่ารถแล้ว</td>";
if($rs[sta_id] == 6)
$show.="<td align=center><a href='total_detail.php' target='blank'>พิมพ์ใบเสร็จค่าเช่า</a></td>";
$show.="</tr>";
}
$show.="</table>";
echo $show;
}
mysql_close($conn);
?>
</p>
</table>
<p> </p>
</body>
</html>