กระบุงสินค้าหนูนำเข้า DB ยังไงดีคะ Help me หน้าฟังค์ชั่นเรียกใช้ ไม่สามารถสั่งให้ database ทำการเพิ่มข้อมูลได้
หน้าฟังค์ชั่นเรียกใช้
<?php
$db = &new MySQL($host,$username,$password,$dbname);
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>คุณมี <a href="cart.php">'.count($items).' ชิ้น'.' ในตะกล้าของคุณ</a></p>';
}
}
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;
}
$output[] = '<form action="addcart_do.php?action=update" method="post" spk="cart">';
$output[] = '<table>';
foreach ($contents as $spk=>$qty) {
$sql = 'SELECT * FROM stopic WHERE spk = '.$spk;
$result = $db->query($sql);
$row = $result->fetch();
extract($row);
$output[] = '<tr>';
$output[] = '<td><a href="cart.php?action=delete&spk='.$spk.'" class="r">ยกเลิกรายการนี้</a></td>';
$output[] = '<td>'.$stype.' by '.$slittletype.'</td>';
$output[] = '<td>'.$sprice.' บาท</td>';
$output[] = '<td><input type="text" name="qty'.$spk.'" value="'.$qty.'" size="3" maxlength="3" />ชิ้น</td>';
$output[] = '<td>'.($sprice * $qty).' บาท</td>';
$total += $sprice * $qty;
$output[] = '</tr>';
}
$output[] = '</table>';
$output[] = '<p>ราคารวม: <strong>'.$total.' บาท</strong></p>';
$output[] = '<div><button type="submit">ปรับปรุงล่าสุด</button></div>';
$output[] = '</form>';
} else {
$output[] = '<p>ตะกล้าของคุณยังว่าเปล่า</p>';
}
return join('',$output);
}
?>
</code>
หน้าแสดงสินค้า
<code>
// Include MySQL class
require_once('inc/mysql.class.php');
// Include database connection
include('config.in.php');
// Include functions
require_once('inc/functions.inc.php');
// Start the session
session_start();
// Process actions
$cart = $_SESSION['cart'];
$action = $_GET['action'];
switch ($action) {
case 'add':
if ($cart) {
$cart .= ','.$_GET['spk'];
} else {
$cart = $_GET['spk'];
}
break;
case 'delete':
if ($cart) {
$items = explode(',',$cart);
$newcart = '';
foreach ($items as $item) {
if ($_GET['spk'] != $item) {
if ($newcart != '') {
$newcart .= ','.$item;
} else {
$newcart = $item;
}
}
}
$cart = $newcart;
}
break;
case 'update':
if ($cart) {
$newcart = '';
foreach ($_POST as $key=>$value) {
if (stristr($key,'qty')) {
$spk = str_replace('qty','',$key);
$items = ($newcart != '') ? explode(',',$newcart) : explode(',',$cart);
$newcart = '';
foreach ($items as $item) {
if ($spk != $item) {
if ($newcart != '') {
$newcart .= ','.$item;
} else {
$newcart = $item;
}
}
}
for ($i=1;$i<=$value;$i++) {
if ($newcart != '') {
$newcart .= ','.$spk;
} else {
$newcart = $spk;
}
}
}
}
}
$cart = $newcart;
break;
}
$_SESSION['cart'] = $cart;
?>
<td width="600"><b><font color="#FF0000"><u>รายการสินค้า</u></font></b><br>
<?php
echo writeShoppingCart();
?>
</div>
<div id="contents">
<?php
echo showCart();
?>
<p><a href="scategory.php">กลับไปยังหน้าสินค้า</a> </p>
</center>
</code>
หนูลองใช้ตัวนี้ดูไม่เข้าค่ะ ถึงเข้าก็เข้าแค่บรรทัดเดว
<code>
include("config.in.php");
$create_topic_db = mysql_connect($host,$username,$password) or die ("ไม่สามารถติดต่อ database ทำการเพิ่มข้อมูลได้");
mysql_select_db($dbname,$create_topic_db) or die ("ไม่สามารถเลือก database ทำการเพิ่มข้อมูลได้");
$create_topic =
"insert into border (bidname,bqty,bdate,bprice,bid) values ('arr[4]','$item','$date','$sprice','$spk')";
$create_topic_re = mysql_db_query($dbname,$create_topic) or die ("ไม่สามารถสั่งให้ database ทำการเพิ่มข้อมูลได้");
ขอความกรุณาด้วยนะคะมือใหม่
ขอบคุณมากค่ะTag : - - - -
Date :
2009-03-13 17:40:55
By :
crowing
View :
1028
Reply :
1
Load balance : Server 02