เก็บข้อมูลใน array ลงฐานข้อมูลค่ะ คือว่ามีโค้ดดังนี้ค่ะ เป็นการแสดงรายละเอียดที่เราได้เลือกค่ะเป็นแบบ
คือว่ามีโค้ดดังนี้ค่ะ เป็นการแสดงรายละเอียดที่เราได้เลือกค่ะเป็นแบบ array แล้วพอจะเก็บข้อมูลที่ได้จาก array ลงฐานข้อมูลไม่ทราบว่าเขียนยังไงคะ(งงอยู่ -*- )
Code (PHP)
<meta http-equiv="Content-Type" content="text/html; charset=tis-620" />
<?php
function writeShoppingCart() {
$cart = $_SESSION['cart'];
if (!$cart) {
return '<p>ไม่มีสินค้าในตะกร้า</p>';
} else {
// Parse the cart session variable
$items = explode(',',$cart);
$s = (count($items) > 1) ? 's':'';
return '<p><img src="basket.png" alt="" width="20" height="24" /> คุณมี <a href="cart.php">'.count($items).' รายการในตะกร้าสินค้า</a><br>';
}
}
function showCart() {
global $db;
$cart = $_SESSION['cart'];
if ($cart) {
$items = explode(',',$cart);
$contents = array();
foreach ($items as $item) {
$contents[$item] = (isset($contents[$item])) ? $contents[$item] + 1 : 1;
}
foreach ($contents as $id=>$qty) {
$sql = 'SELECT * From tbshop INNER JOIN tbproduct on tbshop.user_owner = tbproduct.user_owner WHERE id_product = '.$id;
$result = $db->query($sql);
$row = $result->fetch();
extract($row);
$output[] = ''.$product_code.'';
$output[] = ''.$product_name.'';
$output[] = ''.$price.'';
$output[] = '<input type="hidden" name="id_product" value="'.$id_product.'"/><input type="hidden" name="qty'.$id.'" value="'.$qty.'"/>'.$qty.'';
$output[] = ''.($price * $qty).'';
$total += $price * $qty;
/////////// โค้ด Insert
$sql="insert into order (id_order,id_product,product_code,qty,price)";
$sql.="values(NULL,'$id_product','$product_code','$qty','$price')";
$db_query=mysql_db_query($db,$sql);
}
$output[] = '</table>';
} else {
$output[] = '<p>ไม่มีสินค้าในตะกร้า</p>';
}
return join('',$output);
}
?>
Tag : - - - -
Date :
2009-02-24 18:06:28
By :
เอม
View :
1691
Reply :
4
ก็ fetch array ทีละ element สิครับ โค้ดก็น่าจะถูกแล้วนะครับ
Date :
2009-02-24 22:13:31
By :
pjgunner
ก้อยังงงอยู่น่ะค่ะ ไม่ทราบว่ามีตัวอย่างมั้ยคะ ขอบคุณค่า
Date :
2009-02-25 09:23:49
By :
เอม
ขอบคุณค่าได้แล้ว
Date :
2009-02-26 18:45:49
By :
เอม
Load balance : Server 00