|
|
|
พี่ๆช่วยดูโค้ดให้หน่อยคับ.. เวลาเราสั่งซื้อสินค้าแล้วมันไม่อ่านค่าสินค้านั้นๆ |
|
|
|
|
|
|
|
Code (PHP)
<?
ob_start();
session_start();
require('config.php');
require("connect/function.php");
echo $sql;
//============ Check ว่ามีซ้ำแล้วหรือยัง
if($_GET["product_id"] != "")
{
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
if($_SESSION["strproduct_id"][$i] == $_GET["product_id"])
{
header("location:$_SERVER[PHP_SELF]");
exit();
}
}
}
//============ ถ้ามีการเลือกรายการสินค้าให้เก็บลง Session
if(trim($_GET["product_id"]) != "")
{
$_SESSION["strp"]=$_SESSION["strp"]+1;
$_SESSION["strproduct_id"][$_SESSION[strP]]=$_GET["product_id"];
$_SESSION["strQuanlity"][$_SESSION[strP]]=1;
session_write_close();
header("location:$_SERVER[PHP_SELF]");
}
//============ กรณีลบรายการสั่งซื้อ
if(trim($_GET["action"]) == "Del")
{
$_SESSION["strproduct_id"][$_GET[P]]="";
$_SESSION["strQuanlity"][$_GET[P]]="";
session_write_close();
header("location:$_SERVER[PHP_SELF]");
}
//============ กรณีการแก้ไขรายการสั่งซื้อ
if(trim($_POST["action"]) == "Update")
{
for($i=0;$i<count($_POST["txtQua"]);$i++)
{
$strP=$_POST[txtP][$i];
$strQ=$_POST["txtQua"][$i];
if($strQ <= 0)
{
$strQ=1;
}
$_SESSION["strQuanlity"][$strP]=$strQ;
}
session_write_close();
//============ กระโดด Refresh ใหม่อีกรอบ
header("location:$_SERVER[PHP_SELF]");
}
?>
</td>
</tr>
<tr>
<tr>
<td width="54%" valign="top">
<tr>
<td width="417" height="310" valign="top">
<form action="" method="post" name="frmCart" id="frmCart">
<table width="415" border="1" align="center">
<tr>
<td><table width="418" height="22" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
<tr>
<td><div align="center"><strong>รายการสั่งซื้อ
<input name="action" type="hidden" id="action" value="Update">
</strong></div></td>
</tr>
</table>
<strong> </strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="center">ลำดับ</div></td>
<td>ชื่อสินค้า</td>
<td><div align="center">ราคา</div></td>
<td><div align="center">จำนวน</div></td>
<td><div align="center">รวม</div></td>
</tr>
<?
//============ ทำการแสงรายการที่ได้เลือกว่ามีกี่รายการ
$strNum=0;
$strTotal=0;
for($i=0;$i<=count($_SESSION["strproduct_id"]);$i++)
{
//============ เลือกว่ารายการสินค้าใดบ้าง
$result=select("tbproduct","where 1=1 and product_id='".$_SESSION["strproduct_id"]["$i"]."' ");
if($result)
{
$strNum++;
?>
<tr bgcolor="#FFFFFF">
<td width="9%"> <div align="center">
<?=$strNum;?>
<a href="javascript:if(confirm('ลบรายการสินค้า')==true){window.location='<?=$_SERVER['PHP_SELF'];?>?action=Del&P=<?=$i;?>';}"><img src="image/deleteC.gif" width="12" height="11" border="0"></a></div></td>
<td width="48%">
<?=$result["product_name"];?> </td>
<td width="14%"> <div align="right">
<?="".number_format($result["price"], 2,'.',',');?>
</div></td>
<td width="13%"><div align="center">
<input name="txtP[]" type="hidden" id="txtP[]" value="<?=$i;?>">
<input name="txtQua[]" type="text" id="txtQua<?=$strNum;?>" style="width:30px;text-align:right" value="<?=$_SESSION["strQuanlity"]["$i"];?>" maxlength="3" onChange="checknum(this.value,'txtQua<?=$strNum;?>');">
</div></td>
<td width="16%"> <div align="right">
<?="".number_format(($result["price"])*$_SESSION["strQuanlity"]["$i"], 2,'.',',');?>
</div></td>
</tr>
<?
$strTotal=$strTotal+(($result["price"])*$_SESSION["strQuanlity"]["$i"]);
}
}
?>
</table>
<br> <table width="98%" height="21" border="0" align="center" cellpadding="2" cellspacing="1" bgcolor="#666666">
<tr bgcolor="#FFFFFF">
<td><div align="right">จำนวน (รายการ)</div></td>
<td> <div align="right">
<?=$strNum;?>
</div></td>
</tr>
<tr bgcolor="#FFFFFF">
<td> <div align="right">ราคารวม (บาท)</div></td>
<td width="16%"> <div align="right">
<?="".number_format($strTotal, 2,'.',',');?>
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td width="378"><div align="center"><br>
<?
if($strNum==0)
{
echo "<br><center><strong><font color=red>ไม่มีรายการสั่งซื้อ</font></strong></center><br><br>";
}
?>
<input name="BtnContinute" type="button" class="button" id="BtnContinute2" value="ซื้อสินค้าต่อ" onClick="window.location='index.php';">
<?
if($strNum>0)
{?>
<input name="BtnCalu" type="submit" class="button" id="BtnCalu" value="คำนวณเงินใหม่">
<input name="BtnPayment" type="button" class="button" id="BtnPayment" value="ชำระเงิน" onClick="window.location='pay.php';">
<?}?>
<br>
</div></td>
</tr>
</table>
<p class="style59"> </p>
</form>
<p class="style59">
<script language="JavaScript">
function checknum(value,fields)
{
if(!check_number(value))
{
eval("document.all."+fields+".value='1';");
alert('กรอกจำนวนไม่ถูกต้อง');
}
}
function check_number(ch){
var len, digit;
if(ch == " "){
return false;
len=0;
}else{
len = ch.length;
}
for(var i=0 ; i<len ; i++)
{
digit = ch.charat(i)
if(digit >="0" && digit <="9"){
;
}else{
return false;
}
}
return true;
}
</script></p>
<p class="style59"> </p>
<p class="style59"> </p></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
</tr>
</body>
</html>
เวลาเราสั่งซื้อสินค้าแล้วมันไม่อ่านค่าสินค้านั้นๆ
Tag : PHP
|
|
|
|
|
|
Date :
2011-09-16 16:30:20 |
By :
mooaoun |
View :
692 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คุณ Copy มาจาก Script ยังผิดอยู่อีกเหรอครับ
|
|
|
|
|
Date :
2011-09-16 17:43:07 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|