|
|
|
จะส่งค่า checkbox ของรายการสินค้าลงตะกร้าสินค้าครับ |
|
|
|
|
|
|
|
หน้าตรวจสอบรายการสินค้า
Code (PHP)
<?
session_start();
print_r($_POST["id_prd"]);
session_register("sess_id");
session_register("sess_name");
session_register("sess_price");
session_register("sess_num");
if (count ($sess_id)=="0") {
$check=1;
} else if (!in_array($id_prd,$sess_id)) {
$check=1;
}
if ($check==1) {
include "connect.php";
$sql="select * from tb_product where id_prd='$id_prd'";
$result=mysql_db_query($dbname,$sql);
$rs=mysql_fetch_array($result);
$sess_id[]=$rs[id_prd];
$sess_name[]=$rs[name_prd];
$sess_price[]=$rs[price_prd];
$sess_num[]=1;
}
header("Location: basket.php");
?>
|
|
|
|
|
Date :
2010-01-27 17:34:02 |
By :
wasana0000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ละก็ หน้าตะกร้าสินค้าคับ
Code (PHP)
<?
session_start();
?>
<html>
<head> <title> Notebook Shop </title> </head>
<body>
<h2><font color=red>: : Notebook Shop : : </font></h2>
<p>
[ <a href="index1.php">หน้าแรก</a> ]
[ <a href="basket.php">ดูตะกร้าสินค้า</a> ]
</p>
<table width="770" border="0">
<tr>
<td width="174" height="200" valign="top" bgcolor="#eaeaea">
<center><b>ประเภทสินค้า</b></center>
<?
include "connect.php";
include "type_list.php";
?>
</td>
<td width="600" valign="top">
<?
if (count ($sess_id)==0) {
echo "ยังไม่มีสินค้าอยู่ในตะกร้าครับ<br>";
} else {
?>
<form method="post" action="basket_cal.php">
<table width="100%" border="1">
<td width="6%"><center><b>ลบ</b></center></td>
<td width="50%"><center><b>ชื่อสินค้า</b></center></td>
<td width="12%"><center><b>จำนวน</b></center></td>
<td width="15%"><center><b>ราคา/บาท</b></center></td>
<td width="15%"><center><b>รวม/บาท</b></center></td>
</tr>
<?
for ($i=0;$i<count ($sess_id);$i++) {
$total_unit=$sess_num[$i]*$sess_price[$i];
$total=$total+$total_unit;
$total_unit=number_format($total_unit);
echo $_SESSION['sess_name'];
echo "
<tr>
<td><center>
<input type='checkbox' name='prd_del[]' value='$sess_id[$i]'></center></td>
<td>$sess_name[$i]</td>
<td><center>
<input type='text' name='prd_num[]' value='$sess_num[$i]' size='4'></center></td>
<td><center>$sess_price[$i]</center></td>
<td><center>$total_unit</center></td>
</tr>";
}
?>
</table>
<p align="right">
<? echo" จำนวนเงินทั้งหมด $total_unit บาท"; ?><br><br>
<input type="submit" name="calculate" value="คำนวนใหม่">
<input type="submit" name="complete" value="สั่งซื้อสินค้า">
</p>
</form>
<?
}
?>
</td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2010-01-27 17:36:34 |
By :
wasana0000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รบกวนช่วยหน่อยครับ ยังทำไม่ได้เลย T-T
|
|
|
|
|
Date :
2010-01-29 19:01:26 |
By :
wasana0000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มะมีคนช่วยเลยอ่ะ นั่งแก้มา 2 วัน แล้วยังมะด้ายเลย
|
|
|
|
|
Date :
2010-01-30 10:17:00 |
By :
wasana0000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
วอนผู้รู้ ช่วยทีคับ งงมากเลย t-t
|
|
|
|
|
Date :
2010-01-31 19:01:05 |
By :
wasana0000 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากรู้เหมือนกันนะ
|
|
|
|
|
Date :
2010-02-01 09:07:17 |
By :
pattarawat |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!-- ระบบสั่งซื้อ -->
<form name="myform" method="post" action='index.php?name=product&file=cart_add&id=<?echo $arr['news']['id'];?>'onsubmit="return checkform(this,sess_num);">จำนวน <input name="sess_num" type="text" style="width:50px" class='frindmenu'><INPUT TYPE="hidden" NAME="sess_codes" VALUE="<?=$sess_codes?>"> <input name="submit" type='submit' class='frindmenu' value=' สั่งซื้อสินค้า ' style="width:120px"></form>
รับ
$sess_num[]=1;
เป็น
$sess_num[]=$_POST['sess_num'];
|
|
|
|
|
Date :
2012-07-09 22:50:09 |
By :
vihan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|