mysql|ショッピングカート
if(!$session && !$scid) {
$session = md5(uniqid(rand()));
SetCookie("scid", "$session", time() + 14400);
} /* 最後の数字は秒単位の有効期限です。14400 秒 = 4 時間 */
class Cart {
function check_item($table, $session, $product) {
$query = "SELECT * FROM $table WHERE session ='$セッション' AND 製品='$製品' ";
$result = mysql_query($query);
if(!$result) {
return 0;
}
$numRows = mysql_num_rows($result);
if($numRows == 0) {
return 0;
} else {
$row = mysql_fetch_object($result);
$row->数量を返します。
}
}
function add_item($table, $session, $product, $quantity) {
$qty = $this->check_item($table, $session, $product);
if($qty == 0) {
$query = "$table (セッション、製品、数量) の値に挿入 ";
$query .= "('$session', '$product', '$quantity') ";
mysql_query($query);
} else {
$数量 += $数量;
$query = "UPDATE $table SET数量='$quantity' WHERE session='$session' AND ";
$query .= "product='$product' ";
mysql_query($query);
}
}
function delete_item($table, $session, $product) {
$query = "DELETE FROM $table WHERE session='$session' AND product='$product' ";
mysql_query($query);
}
functionmodify_quantity($table, $session, $product, $quantity) {
$query = "UPDATE $table SETquantity='$quantity' WHERE session='$session' ";
$query .= "AND product='$product' ";
mysql_query($query);
}
function clear_cart($table, $session) {
$query = "$table WHERE から削除 session='$session' ";
mysql_query($query);
}
function cart_total($table, $session) {
$query = "SELECT * FROM $table WHERE session='$session' ";
$result = mysql_query($query);
if(mysql_num_rows($result) > 0) {
while($row = mysql_fetch_object($result)) {
$query = "在庫から価格を選択 WHERE product='$row->product' ";
$invResult = mysql_query($query);
$row_price = mysql_fetch_object($invResult);
$total += ($row_price->価格 * $row->数量);
}
}
$total を返します。
}
function display_contents($table, $session) {
$count = 0;
$query = "SELECT * FROM $table WHERE session='$session' ORDER BY id ";
$result = mysql_query($query);
while($row = mysql_fetch_object($result)) {
$query = "SELECT * FROM 在庫 WHERE product='$row->product' ";
$result_inv = mysql_query($query);
$row_inventory = mysql_fetch_object($result_inv);
$contents["product"][$count] = $row_inventory->product;
$contents["価格"][$count] = $row_inventory->価格;
$contents["数量"][$count] = $row->数量;
$contents["total"][$count] = ($row_inventory->価格 * $row->数量);
$contents["説明"][$count] = $row_inventory->説明;
$count++;
}
$total = $this->cart_total($table, $session);
$contents["final"] = $total;
$contents を返す;
}
function num_items($table, $session) {
$query = "SELECT * FROM $table WHERE session='$session' ";
$result = mysql_query($query);
$num_rows = mysql_num_rows($result);
$num_rows を返します;
}
function quant_items($table, $session) {
$quant = 0;
$query = "SELECT * FROM $table WHERE session='$session' ";
$result = mysql_query($query);
while($row = mysql_fetch_object($result)) {
$quant += $row->quantity;
}
$quant を返します。
}
}
?>
/*
このパートには、mysql サーバー上にテーブルを作成する方法の説明が含まれています。
# MySQL ダンプ 6.0
#
# ホスト: localhost データベース: kmartShopper
#-------------------------------- ------------------------
# サーバー バージョン 3.22.25
#
# テーブル 'inventory' のテーブル構造
#
CREATE TABLE inventory (
product tinytext NOT NULL、
quantity tinytext NOT NULL、
id int(4) DEFAULT '0' NOT NULL auto_increment、
description tinytext NOT NULL、
price float(10,2) DEFAULT '0.00' NOT NULL、
category char (1) DEFAULT '' NOT NULL、
KEY ID (ID)、
PRIMARY KEY (ID)、
KEY Price (価格)
);
#
# テーブル 'shopping' のテーブル構造
#
CREATE TABLE shopping (
session tinytext NOT NULL、
product tinytext NOT NULL、
quantity tinytext NOT NULL、
card tinytext NOT NULL、
id int(4) DEFAULT '0' NOT NULL auto_increment、
KEY id (id)、
PRIMARY KEY (id)
);
*/
例
include("shoppingcart.php");
$cart = 新しいカート;
$mysql_link = mysql_connect("localhost", "wwwrun", "");
$mysql_select_db("kmartShopper", $mysql_link) /* へー、kmartShopper の代わりに 2 つのテーブルを配置したデータベース名を使用してください */
?>
/* $cart->add_item などの関数を呼び出します。コードを参照してください。 */