คำนวนราคาสินค้า โดยให้บวกเพิ่มในแต่ละ ID ทำยังไง php+mssql
ผมใช้ php+Mssql ต้องการรวมราคาสินค้าในแต่ละ User ต้องเริ่มยังไงครับแนะนำหน่อย
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="2" class="cen">
<tr>
<th width="38" bgcolor="#666666"> <div align="center"><span class="fonts"><strong><span class="black1">ลำดับที่</span></strong></span></div></th>
<th width="80" bgcolor="#666666"> <div align="center"><span class="fonts"><strong><span class="black1">เลขที่ใบเสร็จ</span></strong></span></div></th>
<th width="167" bgcolor="#666666"> <div align="center"><span class="fonts"><strong><span class="black1">ชื่อร้านค้า / ชั้น</span></strong></span></div></th>
<th width="148" bgcolor="#666666"> <div align="center"><span class="fonts"><strong><span class="black1">ประเภทสินค้า</span></strong></span></div></th>
<th width="102" bgcolor="#666666"> <div align="center"><span class="fonts"><strong><span class="black1">ราคา</span></strong></span></div></th>
<th bgcolor="#666666"><div align="center"><span class="fonts"><strong><span class="black1">วันที่ซื้อสินค้า</span></strong></span></div></th>
<th bgcolor="#666666"><div align="center"><span class="fonts"><strong><span class="black1">พรีเมี่ยม</span></strong></span></div></th>
<th bgcolor="#666666"><div align="center"><span class="fonts"><strong><span class="black1">แนะนำ</span></strong></span></div></th>
</tr>
<?
while($objResult = mssql_fetch_array($objQuery))
{
?>
<tr class="fonts">
<td bgcolor="#C0C0C0" class="centeredu"><?=$objResult["ListNox"];?></td>
<td bgcolor="#C0C0C0" class="centeredu"><?=$objResult["NumberNo"];?></td>
<td bgcolor="#C0C0C0"><div align="center">
<?=$objResult["ShopName"];?>
<span class="centeredu"></span></div></td>
<td align="right" bgcolor="#C0C0C0" class="centeredu"><?=$objResult["ProductName"];?></td>
<td align="right" bgcolor="#C0C0C0" class="centeredu"><?=$objResult["Price"];?></td>
<td width="132" align="right" bgcolor="#C0C0C0" class="centeredu"><?=$objResult["DateRedem"];?></td>
<td width="67" align="right" bgcolor="#C0C0C0" class="centeredu"><?=$objResult["Exchange"];?></td>
<td width="69" align="right" bgcolor="#C0C0C0" class="centeredu"><?=$objResult["Recommend"];?></td>
</tr>
<?
}
?>
</table>
SQL CODE
<?php
session_start() ;
if(!session_is_registered("login_true_admin")) {
echo "<meta http-equiv='refresh' content='0;url=index.php'>" ;
exit() ;
}
?>
<html>
<head>
<title></title>
</head>
<body>
<?
include("../config.inc.php");
// $objDB = mysql_select_db("$db");
// msql_query("SET NAMES TIS620");
for($i=1;$i<=$_POST["hdnLine"];$i++)
{
if($_POST["txtIDCard$i"] != "")
{
$strSQL = "INSERT INTO Redem";
$strSQL .="(IDCard,ListNox,NumberNo,ShopName,ProductName,Price,DateShoping,Exchange,Recommend,DateRedem)";
$strSQL .="VALUES ";
$strSQL .="('".$_POST["txtIDCard$i"]."','".$_POST["txtListNox$i"]."', ";
$strSQL .="'".$_POST["txtNumberNo$i"]."','".$_POST["txtShopName$i"]."', ";
$strSQL .="'".$_POST["txtProductName$i"]."','".$_POST["txtPrice$i"]."', ";
$strSQL .="'".$_POST["txtDateShoping$i"]."','".$_POST["txtExchange$i"]."', ";
$strSQL .="'".$_POST["txtRecommend$i"]."','".$_POST["DateRedem"]."')";
$objQuery = mssql_query($strSQL);
}
}
$strSQL = "UPDATE Member SET ";
$strSQL .="NumberCard = '".$_POST["NumberCard"]."' ";
//Finish
$strSQL .="WHERE IDCard = '".$_POST["IDCard"]."' ";
$objQuery = mssql_query($strSQL);
echo "<meta http-equiv='refresh' content='0;url=userdetail_view.php?IDCard=$IDCard'>" ;
mssql_close($objConnect);
?>
</body>
</html>Tag : PHP, Ms SQL Server 2005
Date :
2013-09-25 10:19:00
By :
วันพีช
View :
809
Reply :
3
$total =+ $price;
Date :
2013-09-25 10:37:28
By :
Dragons_first
ได้ค่ารวม เป็น 0 นะครับ
Date :
2013-09-26 16:57:53
By :
วันพีช
ได้แล้วครับ
$sum_rc="select sum(Price) as sum_paid from Redem where IDCard='$IDCard'";
$query_sum=mssql_query($sum_rc);
$result = mssql_fetch_array($query_sum);
echo $result["sum_paid"];
Date :
2013-09-27 13:43:53
By :
วันพีช
Load balance : Server 00