|
|
|
ช่วยดูโค้ดให้หน่อยครับ คือจะให้มันแสดงข้อมูลเฉพาะของสมาชิกแต่ละคนครับ |
|
|
|
|
|
|
|
คือผมมีตารางอยู่ 2 ตารางคือ
reserve มีฟิล reserve_id , member_id , date , r_status , p_status , cancel_date
และ
reserve_detail มีฟิล reservedetail_id , house_id , reserve_id , date_in , date_out , total
คือจะให้มันแสดงข้อมูลเฉพาะของสมาชิกแต่ละคนครับ
เช่น สมาชิกรหัส 01 ก็ให้มันแสดงเฉพาะข้อมูลของรหัส สมาชิกรหัส 01
แต่โค้ดที่ผมเขียนมันแสดงออกมาทุกรหัสเลยครับ
ไม่ทราบว่าต้องเขียนยังไงเหรอครับ ผมก็มือใหม่อยู่ครับ เครียดมากๆ
Code (PHP)
<?
session_start()
?>
<?
include "config.php";
?>
<!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=utf-8" />
<title>Untitled Document</title>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="lightbox.css" type="text/css" media="screen" />
<script type="text/javascript" src="lightbox.js"></script>
<style type="text/css">
<!--
.style1 {color: #00CCFF}
-->
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/menu.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="1280" height="1024" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="900" height="1022" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="899" height="52" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#00FFCC"> </td>
</tr>
</table>
<table width="899" height="40" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="698" height="32" valign="top"><? include "menu/menu.php";?></td>
</tr>
</table>
<table width="899" height="847" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="204" valign="top" bgcolor="#FFFFFF"><? include "menu/main_menu.php";?></td>
<td width="695" align="center" valign="top" bgcolor="#FFFFFF" class="bar-border3"><table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
</table>
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<? $sql="SELECT * FROM reserve LEFT JOIN reserve_detail ON reserve.reserve_id = reserve_detail.reserve_id WHERE reserve.reserve_id > 0";
$result=mysql_db_query($dbname, $sql);
$data=mysql_fetch_array($result);
?> </td>
</tr>
</table>
<table width="490" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="bg_headmenu"><div align="left" class="font-orange-14">รายละเอียดการจอง</div></td>
</tr>
</table>
<table width="668" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="558" height="442" valign="top" class=""><table width="106%" height="146" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="146" align="left"><form id="form1" name="form1" method="post" action="">
<table width="104%" height="89" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td width="3%" align="center" class="bar-bg">ที่</td>
<td width="10%" align="center" class="bar-bg">รหัสการจอง</td>
<td width="7%" align="center" class="bar-bg">วันที่จอง</td>
<td width="12%" align="center" class="bar-bg">สถานะการจอง</td>
<td width="15%" align="center" class="bar-bg">สถานะการจ่ายเิงิน</td>
<td width="11%" align="center" class="bar-bg">รหัสบ้านพัก</td>
<td width="13%" align="center" class="bar-bg">วันที่เข้าพัก</td>
<td width="13%" align="center" class="bar-bg">วันที่ออก</td>
<td width="16%" align="center" class="bar-bg">จำนวนคนเข้าพัก</td>
</tr>
<tr>
<?
$i=0;
while(list($reserve_id, $member_id, $date, $r_status, $p_status, $cancel_date,$reservedetail_id, $house_id, $reserve_id, $date_in, $date_out, $total)=mysql_fetch_array($result)){
$i++;
?>
<td align="center" class="list5"><?=$i?></td>
<td class="list5">
<div align="center">
<?=$reserve_id?>
</div> </td>
<td class="list5">
<div align="center">
<?=$date?>
</div>
</span></td>
<td class="list5">
<div align="center">
<?=$r_status?>
</div>
</span></td>
<td class="list5"><div align="center">
<?=$p_status?>
</div></td>
<td class="list5"><div align="center">
<?=$house_id?>
</div></td>
<td class="list5"><div align="center">
<?=$date_in?>
</div></td>
<td class="list5"><div align="center">
<?=$date_out?>
</div></td>
<td class="list6"><div align="center">
<?=$total?>
</div></td>
</tr>
<?
}
?>
</table>
<p> </p>
</form></td>
</tr>
</table></td>
</tr>
</table>
<p> </p>
<p> </p>
<p>
</p>
</p></td>
</tr>
</table>
<table width="900" height="57" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"> </td>
</tr>
</table> <p> </p></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2009-11-12 19:35:16 |
By :
motoadd |
View :
751 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็ยังไม่ได้อยู่ดีอ่ะครับ
|
|
|
|
|
Date :
2009-11-13 07:05:46 |
By :
motoadd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้ละครับขอบคุณมากครับ
|
|
|
|
|
Date :
2009-11-13 08:45:59 |
By :
motoadd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|