|
|
|
ช่วยเขียนโค๊ดคำนวณสินค้าด้วย AJAX หน่อยนะคะ อยากให้ช่วยเขียนโค๊ดการคำนวณเงินจากการซื้อสินค้าของลูกค้า |
|
|
|
|
|
|
|
ขอดูโค้ดที่เขียนไว้แล้วหน่อยครับ
|
|
|
|
|
Date :
2009-10-23 17:39:47 |
By :
DownsTream |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
นี่ค่ะโคีด ที่เขียนเอาไว้แล้ว มนอันเดขึ้นคำนวณได้นะคะ แต่มันไม่ขึ้นถ้าเกิดเราคำนวณสินค้าครั้งต่อไปอ่ะ มันจะขึ้นอันแรกที่เราคำนวณค่ะ ช่วยให้คำปรึกษาหน่อยนะคะ
<?php
session_start();
$strProductID = $_POST["tProductID"];
$strQty = $_POST["tQty"];
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
if($strProductID != "" and $strQty != "")
{
$strSQL = "INSERT INTO cart ";
$strSQL .="(SID,ProductID,Qty) ";
$strSQL .="VALUES ";
$strSQL .="('".session_id()."','".$strProductID."','".$strQty."') ";
$objQuery = mysql_query($strSQL);
}
?>
<center>
<h2>Sale Price</h2>
<table width="408" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="51"><div align="center">ID</div></td>
<td width="154" height="26"><div align="center">Product</div></td>
<td width="69"><div align="center">Price</div></td>
<td width="57"><div align="center">Qty</div></td>
<td width="65"><div align="center">Total</div></td>
</tr>
<?
$intSumTotal = 0;
$intRows = 0;
$strSQL = "SELECT * FROM cart WHERE SID = '".session_id(4)."' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
$intRows ++;
//*** Product ***//
$strSQL = "SELECT * FROM product WHERE ProductID = '".$objResult["ProductID"]."' ";
$objQueryPro = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResultPro = mysql_fetch_array($objQueryPro);
$intTotal = $objResult["Qty"] * $objResultPro["Price"];
$intSumTotal = $intSumTotal + $intTotal;
?>
<tr>
<td><div align="center"><?=$intRows;?></div></td>
<td><?=$objResultPro["ProductName"];?></td>
<td><div align="right"><?=number_format($objResultPro["Price"],2);?></div></td>
<td><div align="center"><?=$objResult["Qty"];?></div></td>
<td><div align="right"><?=number_format($intTotal,2);?></div></td>
</tr>
<?
}
?>
<tr>
<td colspan="4"><div align="right">Total Amount </div></td>
<td>
<div align="right"><?=number_format($intSumTotal,2);?></div></td>
</tr>
</table>
<?
if($intSumTotal > 0)
{
?>
<br><input name="btnCheckOut" type="submit" id="btnCheckOut" value="Receipt" onClick="JavaScript:CheckOut();">
<?
}
?>
</center>
|
|
|
|
|
Date :
2009-10-26 09:29:53 |
By :
wangxin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<?php
session_start();
$strProductID = $_POST["tProductID"];
$strQty = $_POST["tQty"];
$objConnect = mysql_connect("localhost","root","1234") or die("Error Connect to Database");
$objDB = mysql_select_db("test");
if($strProductID != "" and $strQty != "")
{
$strSQL = "INSERT INTO cart ";
$strSQL .="(SID,ProductID,Qty) ";
$strSQL .="VALUES ";
$strSQL .="('".session_id()."','".$strProductID."','".$strQty."') ";
$objQuery = mysql_query($strSQL);
}
?>
<center>
<h2>Sale Price</h2>
<table width="408" border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="51"><div align="center">ID</div></td>
<td width="154" height="26"><div align="center">Product</div></td>
<td width="69"><div align="center">Price</div></td>
<td width="57"><div align="center">Qty</div></td>
<td width="65"><div align="center">Total</div></td>
</tr>
<?
$intSumTotal = 0;
$intRows = 0;
$strSQL = "SELECT * FROM cart WHERE SID = '".session_id(4)."' ";
$objQuery = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
while($objResult = mysql_fetch_array($objQuery))
{
$intRows ++;
//*** Product ***//
$strSQL = "SELECT * FROM product WHERE ProductID = '".$objResult["ProductID"]."' ";
$objQueryPro = mysql_query($strSQL) or die ("Error Query [".$strSQL."]");
$objResultPro = mysql_fetch_array($objQueryPro);
$intTotal = $objResult["Qty"] * $objResultPro["Price"];
$intSumTotal = $intSumTotal + $intTotal;
?>
<tr>
<td><div align="center"><?=$intRows;?></div></td>
<td><?=$objResultPro["ProductName"];?></td>
<td><div align="right"><?=number_format($objResultPro["Price"],2);?></div></td>
<td><div align="center"><?=$objResult["Qty"];?></div></td>
<td><div align="right"><?=number_format($intTotal,2);?></div></td>
</tr>
<?
}
?>
<tr>
<td colspan="4"><div align="right">Total Amount </div></td>
<td>
<div align="right"><?=number_format($intSumTotal,2);?></div></td>
</tr>
</table>
<?
if($intSumTotal > 0)
{
?>
<!-- JavaScript:CheckOut คือ function อะไรครับ แล้วหยิบของใส่ตระกร้า ตอนไหน ผมว่า ลอง ให้โปรแกรม Select ของบางหมวดออกมาโชวื เสร็จแล้ว ให้คลิกเลือกที่ รูป หรือ เช็ค Box หรืออะไรก้อแล้วแต่เห็นสมควร เสร็จแล้วกด Botton เพื่อเลือกสินค้า ส่งข้อมูลที่เลือก ไปให้ Ajax ลองแบบนี้ดูครับ
function callDoAjax(){
HttPRequest = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
HttPRequest = new XMLHttpRequest();
if (HttPRequest.overrideMimeType) {
HttPRequest.overrideMimeType('text/html');
}
} else if (window.ActiveXObject) { // IE
try {
HttPRequest = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
HttPRequest = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!HttPRequest){
alert(' ไม่สามารถสร้าง XMLHTTP instance ไม่สามารถดึงข้อมูลจากระบบได้ ');
return false;
}
var txtran="&sid="+Math.random();
var ProDuctNumber = document.getElementById("ProDuctNumber").value; //
var url = 'Ajax_selectProDuct.php?txtran='+txtran+'&ProDuctNumber='+ProDuctNumber;//
HttPRequest.open('get',url,true);
HttPRequest.setRequestHeader('Content-Type', 'text/html; charset:windows-874');
HttPRequest.onreadystatechange = function()
{
if(HttPRequest.readyState == 4) // Return Request
{
if(HttPRequest.status==200){
window.frames['FramDataDue'].document.body.innerHTML=HttPRequest.responseText; คืนค่ากลับมาว่าเลือกกี่อัน ราคาเท่าไหร่ ก้อแล้วแต่ ลองดูครับ ของผมส่งค่าเข้า ifram นะครับถ้าคืนค่ามาเป็นค่าตัวเลขแล้วเก็บ ราคาลง BOX ก้อลองหาดูก่อนให้ได้อันนี้ก่อนนะครับ อ้อ สร้าง file Ajax_selectProDuct.php เอาไว้ประมวลผลการค้นหา รามราคา ให้เสร็จในนี้เลยจะดีนะครับ
} // end if 200
} // end if 4
}
HttPRequest.send(null);
}
-->
<br><input name="btnCheckOut" type="submit" id="btnCheckOut" value="Receipt" onClick="JavaScript:CheckOut();">
<?
}
?>
</center>
|
|
|
|
|
Date :
2012-07-30 17:53:34 |
By :
korn_sty |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|