|
|
|
รบกวนด้วยนะค่ะ....แสดงประวัติการสั่งซื้อของลูกค้า ว่ามีหมายเลขใบสั่งอะไรบ้าง ซื้อไปเมื่อวันที่เท่าไหร่ |
|
|
|
|
|
|
|
member_order_view แสดงรายละเอียดของใบสั่งซื้อ ลิงค์มาจากหมายเลขใบสั่งในโค้ด order_member
Code (PHP)
<?
$id_order=$_GET[id_order];
include "config.php";
$sql="select * from tb_order where id_order='$id_order' ";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$id_order=$rs[id_order];
$code_order=sprintf("%05d",$id_order);
$name_order=$rs[name_order];
$email_order=$rs[email_order];
$tel_order=$rs[tel_order];
$address_order=$rs[address_order];
$total_order=$rs[total_order];
$date_order=$rs[date_order];
?>
<!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" />
<titleOilShop_E-commerch::></title>
<style type="text/css">
<!--
.style1 {
font-family: "Peach TV";
font-size: 36px;
color: #FF00FF;
}
.style4 {font-size: 18px}
#apDiv1 {
position:absolute;
left:167px;
top:165px;
width:459px;
height:53px;
z-index:1;
}
.style5 {
color: #FF00FF;
font-size: 24px;
}
-->
</style>
</head>
<body>
<p><h3 align="center" class="style1"> </h3>
<h3 align="center" class="style5"><img src="image/mix/b1.gif" width="139" height="70" /></h3>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td width="101"><span class="style4">รหัสใบสั่งซื้อ :</span></td>
<td> <?=$code_order?> </td>
</tr>
<tr>
<td width="101"><span class="style4"> ชื่อ - สกุุล : </span></td>
<td><?=$name_order?></td>
</tr>
<tr>
<td><span class="style4">E-Mail : </span></td>
<td><?=$email_order?></td>
</tr>
<tr>
<td><span class="style4">เบอร์ติดต่อ :</span></td>
<td><?=$tel_order?></td>
</tr>
<tr>
<td><span class="style4">ที่อยู่ :</span></td>
<td><?=$address_order?></td>
</tr>
<tr>
<td><span class="style4">สั่งซื้อเมื่อ :</span></td>
<td><?=$date_order?></td>
</tr>
</table>
<br >
<table width="926" border="1" align="center" bgcolor="#993366">
<tr bgcolor="E8E8E8">
<td width="20%"><div align="center"><b>รหัสสินค้า</b></div></td>
<td width="19%"><div align="center"><b>ชื่อสินค้า</b></div></td>
<td width="20%"><div align="center"<b>จำนวน</b></div></td>
<td width="20%"><div align="center"<b>ราคา</b></div></td>
</tr>
<?
$sql="SELECT ref_id_prd,name_prd,number,price FROM product,order_detail
WHERE id_prd = ref_id_prd and
ref_id_order ='$id_order' ";
$result=mysql_db_query($dbname,$sql);
while ($rs=mysql_fetch_array($result))
{
$ref_id_prd=$rs[ref_id_prd];
$code=sprintf("%05d",$ref_id_prd);
$name_prd=$rs[name_prd];
$number=$rs[number];
$price=$rs[price];
$total_unit=$number*$price;
$total=$total+$total_unit;
echo "
<tr>
<td>$code</td>
<td> $name_prd</td>
<td> $number</td>
<td><center>$price</center></td>
<td><center>$total_unit</center></td>
</tr>";
}
?>
</table>
<p> </p>
<p><br>
<? echo "จำนวนเงินทั้งหมด $total บาท"; ?><br />
</p>
</body>
</html>
รูปที่แสดงออกมา ซึ่งไม่ขึ้นอะไรเลยค่ะ
|
|
|
|
|
Date :
2012-03-01 00:06:23 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตารางที่ใช้ประกอบนะค่ะ
ตาราง tb_member
ตาราง tb_order
ตาราง order_detail
|
|
|
|
|
Date :
2012-03-01 00:14:20 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยตอบให้หน่อยนะค่ะ มีสอบวันศุกร์.....แล้ว....
|
|
|
|
|
Date :
2012-03-01 11:27:54 |
By :
koi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|