|
|
|
PHP + mysql มีปัญหาเรื่องระบบตะกร้าค่ะ บันทึกที่อยู่ไม่ได้ ช่วยทีค่ะ |
|
|
|
|
|
|
|
อันนี้ Code แสดงผลครับ ไม่ใช้ Insert
|
|
|
|
|
Date :
2012-06-13 15:29:59 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทดด้วยนะค่ะ พอดีเอาโค้ด และรูปลงกระทู้ไม่ได้ไม่รู้เป็นไร error ทุกทีเลย แต่พอเอาแค่บางส่วนลงได้..เดี๋ยวจะพยามยามเอาโค้ดให้พี่ช่วยดูนะคร้าา
|
|
|
|
|
Date :
2012-06-13 15:45:40 |
By :
chanidam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วคร้าาาา มาติดตงแสดงข้อมูลอีกและ
<html>
<head>
<title>ThaiCreate.Com</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<?
mysql_connect("localhost","root","12345678");
mysql_select_db("data");
$sql = "SELECT * FROM orders WHERE order_id = '".$_GET["order_id"]."' ";
$ans = mysql_query($sql) or die(mysql_error());
$result = mysql_fetch_array($ans);
?>
<table width="304" border="1">
<tr>
<td width="71">OrderID</td>
<td width="217">
<?=$result["order_id"];?></td>
</tr>
<tr>
<td width="71">Name</td>
<td width="217">
<?=$result["name"];?></td>
</tr>
<tr>
<td>Address</td>
<td><?=$result["address"];?></td>
</tr>
<tr>
<td>Tel</td>
<td><?=$result["tel"];?></td>
</tr>
<tr>
<td>Email</td>
<td><?=$result["email"];?></td>
</tr>
</table>
<br>
<table width="400" border="1">
<tr>
<td width="101">ProductID</td>
<td width="82">ProductName</td>
<td width="82">Price</td>
<td width="79">Qty</td>
<td width="79">Total</td>
</tr>
<?
$Total = 0;
$SumTotal = 0;
$sql2 = "SELECT * FROM orders_detail WHERE order_id = '".$_GET["order_id"]."' ";
$ans2 = mysql_query($sql2) or die(mysql_error());
while($result2 = mysql_fetch_array($ans2))
{
$sql3 = "SELECT * FROM product WHERE product_num = '".$result2["product_num"]."' ";
$ans3 = mysql_query($sql3) or die(mysql_error());
$result3 = mysql_fetch_array($ans3);
$Total = $result2["Qty"] * $result3["price"];
$SumTotal = $SumTotal + $Total;
?>
<tr>
<td><?=$result2["product_id"];?></td>
[font=Verdana][font=Verdana] <td><?=$result3["product_detail"];?></td>
<td><?=$result3["price"];?></td>[/font][/font]
<td><?=$result2["Qty"];?></td>
<td><?=number_format($Total,2);?></td>
</tr>
<?
}
?>
</table>
Sum Total <?=number_format($SumTotal,2);?>
<?
mysql_close();
?>
</body>
</html>
<?/* This code download from www.ThaiCreate.Com */ ?>
ข้อมูล product_detail และ price มันไม่ใชว์ ช่วยดูกันหน่อยนะคร้าาาา
|
|
|
|
|
Date :
2012-06-13 17:15:49 |
By :
chanidam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไหนครับ โค๊ด insert
|
|
|
|
|
Date :
2012-06-13 17:44:52 |
By :
Dragons_first |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|