|
|
|
การเรียกดูข้อมูล งงมาทังคืนแล้วครับ ช่วยหน่อยครับ *มีโค้ดให้ดูด้วย |
|
|
|
|
|
|
|
ผมว่าเปลี่ยน
จาก mysql_num_rows เป็น mysql_fetch_array ดูนะ
อิอิ
|
|
|
|
|
Date :
2018-04-23 14:12:43 |
By :
nobetaking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปลี่ยนจาก crop รูปโค้ดมาโพสต์ เป็น copy โค้ดแบบ text มา โพสต์ครับ
|
|
|
|
|
Date :
2018-04-23 14:51:44 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พวกแปะโค้ดเป็นภาพอีกแล้ว โพสต์โค้ดมันยากหรือ?
|
|
|
|
|
Date :
2018-04-23 15:18:38 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2018-04-23 15:22:58 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php include '../admin/partials/header.php'; ?>
<?php include '../admin/partials/leftmenu.php'; ?>
<?php
?>
<?php
mysql_connect("localhost","root","12345678");
mysql_select_db("myweb_db");
mysql_query("SET character_set_results=utf8");
mysql_query("SET character_set_client=utf8");
mysql_query("SET character_set_connection=utf8");
$strSQL2 = "SELECT * FROM orders_detail WHERE OrderID = '".$_GET['OrderID']."'";
$objQuery2 = mysql_query($strSQL2) or die(mysql_error());
$objResult2 = mysql_num_rows($objQuery2);
$strSQL3 = "SELECT * FROM products WHERE ProductID = '".$objResult2["ProductID"]."'";
$objQuery3 = mysql_query($strSQL3) or die(mysql_error());
$objResult3 = mysql_num_rows($objQuery3);
$Total = 0;
$SumTotal = 0;
$Total = $objResult2['Qty'] * $objResult3['Price'];
$SumTotal = $Total;
?>
<div class="content-wrapper">
<div id="title-breadcrumb-option-demo" class="page-title-breadcrumb">
<!--END-->
<!--BEGIN CONTENT-->
<div class="page-content">
<div class="col-md-12">
<div class="panel panel-dark" id="admin">
<div class="panel-heading"><h3>แสดงรายการออเดอร์สินค้า</h3></div>
<div class="panel-body">
<table class="table table-hover table-striped">
<thead>
<tr>
<th> <div align="center">รหัสออเดอร์</div></th>
<th> <div align="center">รหัสสินค้า</div></th>
<th> <div align="center">ชื่อสินค้า</div></th>
<th> <div align="center">ราคา</div></th>
<th> <div align="center">จำนวน</div></th>
<th> <div align="center">ราคารวม</div></th>
</tr></thead>
<tbody>
<?php while($objResult2 = mysql_fetch_array($objQuery2)){?>
<tr>
<td><center><?php echo $objResult2["OrderID"];?></center></td>
<td><center><?php echo $objResult3["ProductID"];?></center></td>
<td><center><?php echo $objResult3["ProductName"];?></center></td>
<td><center><?php echo $objResult2["Price"];?></center></td>
<td><center><?php echo $objResult2["Qty"];?></center></td>
<td><center><?php echo $SumTotal;?></center></td>
</tr>
</tbody>
<?php } ?>
</table>
</div>
</div>
</div>
</div>
<!--END CONTENT-->
</div>
<!--END PAGE WRAPPER-->
</div>
</div>
</body>
|
ประวัติการแก้ไข 2018-04-23 15:35:57
|
|
|
|
Date :
2018-04-23 15:30:17 |
By :
tonpalmtk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษด้วยครับ ที่ไม่ได้แปะโค้ดมาให้
|
|
|
|
|
Date :
2018-04-23 15:31:01 |
By :
tonpalmtk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|