|
|
|
รบกวนเเนะนำเกี่ยวกับการเเก้ไข การออก report เเบบ รายวันหน่อยครับ |
|
|
|
|
|
|
|
ผมทำ report เพื่อเเสดงราคาขายในเเต่ละวันครับ ซึ่งมันติดปัญหาตรงที่ มันดึงมาเเสดงเเค่วันที่เดียว ซึ่งผมไม่ทราบว่าจะต้องเเก้ไขอย่างไร รบกวนด้วยครับ
Code (PHP)
$query = "SELECT SUM(order_total) AS totol, DATE_FORMAT(order_date, '%d-%m-%Y') AS datesave FROM order_detaila GROUP BY DATE_FORMAT(datesave, '%d%')";
$result = mysqli_query($con, $query);
?>
<h3 align="center">รายงานแยกตามวัน</h3>
<table width="400" border="1" cellpadding="0" cellspacing="0" align="center">
<thead>
<tr>
<th width="40%">วันที่</th>
<th width="60%">ยอดขาย</th>
</tr>
</thead>
<?php while ($row = mysqli_fetch_array($result)) { ?>
<tr>
<td align="center">
<?php echo date('d M Y', strtotime($row['datesave'])); ?>
</td>
<td align="right"><?php echo number_format($row['totol'], 2); ?></td>
</tr>
<?php
$at += $row['totol'];
}
?>
<tr>
<td align="center">รวม</td>
<td align="right" bgcolor="yellow"><?php echo number_format($at, 2); ?></td>
</tr>
</table>
Tag : PHP, HTML5, JavaScript, Ajax, jQuery
|
|
|
|
|
|
Date :
2019-02-28 11:04:15 |
By :
worapong39 |
View :
574 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนด้วยครับ
|
|
|
|
|
Date :
2019-02-28 22:42:25 |
By :
worapong39 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (SQL)
SELECT SUM(order_total) AS totol, order_date as datesave
FROM order_detaila
GROUP BY day(order_date)
|
|
|
|
|
Date :
2019-03-01 09:02:45 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|