|
|
|
sum ผมรวมใน sql ออกมาแล้วคือมันไม่แยกตรงตามวันที่ครับ |
|
|
|
|
|
|
|
คือผม sum ออกมาแล้วคือมันไม่แยกตรงตามวันที่ครับ
อยากให้มันแสดง ข้อมูล sum เฉพาะ วันที่ใครวันที่มันครับ
หรือถ้าต้องการ sum ข้อมูลในแล้วนำไปเก็บไว้ใน ตารางฟิลด์ total ก่อน
โดยให้มัน sum เก็บลง total ตามวันที่มันเลย แบบนี้ครับ ทำแบบไหนครับ
ขอบคุณครับ
Code (PHP)
<?php require("check_user.php");
// include('check_time.php');
$d = date("Y-m-d");
$d1 = date("Y-m-d",strtotime("-1 day"));
$m = date("m");
$m1 = date("m",strtotime("-1 MONTH"));
$y = date("Y");
?>
<!doctype html>
<head>
<title></title>
<?php include("meta_mb.php");?>
<meta name="keywords" content="">
<meta name="description" content="">
</head>
<body>
<div id="wrapper">
<div class="shell">
<div class="container">
<!-- main -->
<div class="main">
<!-- featured3 -->
<div class="featured3">
<!-- ชุดเมนูหน้าระบบสมาชิก -->
<?php include("menu_member.php"); ?>
<div align="center">
<div class="line"></div>
<form method="post" action="credit.php" name="credit" id="credit">
<table height="" width="60%" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="">
<tr>
<td align="center" colspan="12" height="30px" class="mboxl3"><h4>เลือกเดือน</h4></td>
</tr>
<tr>
<td align="center" height="50px"><a href="credit.php?id=01"><input type="button" value="ม.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=02"><input type="button" value="ก.พ." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=03"><input type="button" value="มี.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=04"><input type="button" value="เม.ย." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=05"><input type="button" value="พ.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=06"><input type="button" value="มิ.ย." style="width: 80px"></a></td>
</tr>
<tr>
<td align="center" ><a href="credit.php?id=07"><input type="button" value="ก.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=08"><input type="button" value="ส.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=09"><input type="button" value="ก.ย." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=10"><input type="button" value="ต.ค." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=11"><input type="button" value="พ.ย." style="width: 80px"></a></td>
<td align="center" ><a href="credit.php?id=12"><input type="button" value="ธ.ค." style="width: 80px"></a></td>
</tr>
</table>
<?php
$sql = "SELECT * FROM credit
WHERE member_id = '$_SESSION[login_true]' ";
$query = mysqli_query($conn,$sql) or die ("Error Query [".$sql."]");
$result = mysqli_fetch_array($query,MYSQLI_ASSOC);
$to[1] = ($result['car_p']);
$to[2] = ($result['car_ch']);
$to[3] = ($result['car_se']);
$to[4] = ($result['prb_p']);
$to[5] = ($result['ins_p']);
$to[6] = ($result['car_l']);
$to[7] = ($result['car_t']);
$to[8] = ($result['car_o']);
$sum = $to[1]+$to[2]+$to[3]+$to[4]+$to[5]+$to[6]+$to[7]+$to[8];
//echo $sum;
$strid = null;
if(isset($_GET["id"])) $strid = $_GET["id"];
$sql ="SELECT count(car_type) as ct,
SUM(car_p) as sp,
SUM(car_ch) as sch,
SUM(car_se) as sse,
SUM(car_l) as sl,
SUM(car_t) as st,
SUM(car_o) as so,
SUM(prb_p) as sprb,
SUM(ins_p) as sins,
SUM(total) as sto,
SUM(pay) as p,
chk,car_type,car_cha,car_num,car_city,date
FROM credit
WHERE member_id = '$_SESSION[login_true]' AND MONTH(date) = '$strid'
group by date desc";
$query = $conn->query($sql) or die($conn->error."<br>$sql");
////////
?>
<br>
<div class="line"></div>
<table height="" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="" border color="#000000">
<tr>
<td width="100%" colspan="2" align="center"><font size="3"><b>ข้อมูลการชำระเงินของลูกค้า เดือน<?php
if ($strid == "01") { echo "มกราคม";
}elseif ($strid == "02") { echo "กุมภาพันธ์";
}elseif ($strid == "03") { echo "มีนาคม";
}elseif ($strid == "04") { echo "เมษายน";
}elseif ($strid == "05") { echo "พฤษภาคม";
}elseif ($strid == "06") { echo "มิถุนายน";
}elseif ($strid == "07") { echo "กรกฏาคม";
}elseif ($strid == "08") { echo "สิงหาคม";
}elseif ($strid == "09") { echo "กันยายน";
}elseif ($strid == "10") { echo "ตุลาคม";
}elseif ($strid == "11") { echo "พฤศจิกายน";
}elseif ($strid == "12") { echo "ธันวาคม";
}else{}
;?></b></font></td>
</tr>
<tr>
<td align="left" width="" align="left" >หน่วย:บาท</td>
<td align="right">
<div id="non-printable"> <!-- ไม่ต้องการปริ้นส่วนนี้ -->
<img src="/accessory/printer.png" width="40" title="Printing" onclick="javascript:window.print();" >
</div><!-- END ไม่ต้องการปริ้นส่วนนี้ -->
</td>
</tr>
</table>
<table height="" width="100%" border="1" cellpadding="0" cellspacing="0" bgcolor="" border color="#000000">
<tr>
<th rowspan="" align="center" width="5%" height="35"><font size="2" color="#">ลำดับ</font></th>
<th rowspan="" align="center" width="10%">วันที่</th>
<th align="center" width="10%">รวมราคา</th>
<th align="center" width="10%">ยอดชำระ</th>
<th align="center" width="10%">คงค้าง</th>
<td align="center" width="10%">รวมรถ / คัน</td>
<th colspan="2" align="center" width="10%">เลือก</th>
</tr>
<?php
$i = 1;
while($ro=$query->fetch_assoc())
{?>
<tr>
<td align="center" height="25"><?php echo $i;?></td>
<td align="center" ><?php echo DateThai($ro["date"]);?></td>
<td align="center" ><?php echo number_format("$sum");?></td>
<td align="center" ><?php echo number_format($ro["p"]);?></td>
<td align="center" ><?php echo number_format($ro["p"]);?></td>
<td align="center" ><b><?php echo number_format($ro["ct"]);?></b></td>
<td align="center" ><img src="image/view.png" title="ดู" width="13" height="13" onClick="location.href='show_detail.php'"></td>
</tr>
<?php
$i++;
}
?>
</table>
</form>
</div> <!-- center -->
<!-- end featured3 -->
</div>
<!-- end main -->
</div>
</div>
</div>
</div>
</body>
</html>
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2019-08-04 10:41:54 2019-08-04 10:42:12 2019-08-04 10:43:37 2019-08-04 10:45:16 2019-08-04 10:46:50
|
|
|
|
|
Date :
2019-08-04 10:37:00 |
By :
lhumdin |
View :
942 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ได้แล้วครับ ขอบคุณครับ
|
|
|
|
|
Date :
2019-08-06 17:42:54 |
By :
lhumdin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|