Transferring order values from php shopping cart to MySQL

雨燕双飞 提交于 2019-12-04 20:48:01

Here's a really simple example that uses stored procedures which you might find useful.

Full script here : http://pastie.org/1268992

Hope it helps :)

Example stored procedure calls

start transaction;

call insert_order(1);

call insert_order_item(1,1,2);
call insert_order_item(1,2,4);
call insert_order_item(1,3,6);

commit;

Example PHP script

<?php

// dummy session data

$userID = 1; 

$cart = array(
    array("product_id" => 1, "qty" => 2, "item_id" => 0, "price" => 0, "subtotal" => 0), 
    array("product_id" => 2, "qty" => 4, "item_id" => 0, "price" => 0, "subtotal" => 0),    
    array("product_id" => 3, "qty" => 6, "item_id" => 0, "price" => 0, "subtotal" => 0));

$conn = new mysqli("localhost", "foo_dbo", "pass", "foo_db", 3306);

try{
    $conn->autocommit(FALSE); // start transaction

    // create the order 

    $sql = sprintf("call insert_order(%d)", $userID);

    $result = $conn->query($sql);
    $row = $result->fetch_array();
    $result->close();

    $orderID = $row["order_id"]; //  new order_id returned by sproc
    $conn->next_result();   

    // loop your cart and insert order items

    foreach($cart as $k => $v){

        $sql = sprintf("call insert_order_item(%d,%d,%d)", $orderID, $v["product_id"],$v["qty"]);

        $result = $conn->query($sql);
        $row = $result->fetch_array();
        $result->close();

        $cart[$k]["item_id"] = $row["item_id"]; // save data returned by sproc incase you need it ??
        $cart[$k]["price"] = $row["price"];
        $cart[$k]["subtotal"] = $row["subtotal"];

        $conn->next_result();   
    }
    $conn->commit(); //all OK so commit order/order items...

    echo sprintf("your order no. is %s<br/>", $orderID);

    $total = 0;
    foreach($cart as $k => $v){
        $total += $v["subtotal"];
        echo sprintf("item_id=%s, product_id=%s, price=%s, qty=%s, subtotal=%s<br/>", 
            $v["item_id"],$v["product_id"],$v["price"],$v["qty"],$v["subtotal"]);
    }
    echo sprintf("order total = %s<br/>", $total);

}
catch(exception $ex){
    //handle errros and rollback
    $conn->rollback();
    echo sprintf("order error - %s<br/>", $ex->getMessage()); 
}

$conn->close();
?>

Example MySQL script

-- TABLES

drop table if exists users;
create table users
(
user_id int unsigned not null auto_increment primary key,
username varbinary(32) unique not null
)
engine=innodb;

drop table if exists products;
create table products
(
product_id smallint unsigned not null auto_increment primary key,
name varchar(255) unique not null,
price decimal(10,2) not null default 0
)
engine=innodb;

drop table if exists orders;
create table orders
(
order_id int unsigned not null auto_increment primary key,
user_id int unsigned not null,
order_date datetime not null,
total decimal(10,2) not null default 0,
key (user_id)
)
engine=innodb;

drop table if exists order_items;
create table order_items
(
item_id int unsigned not null auto_increment primary key,
order_id int unsigned not null,
product_id smallint unsigned not null,
qty smallint unsigned not null default 0,
price decimal(10,2) not null default 0,
subtotal decimal(10,2) not null default 0,
key (order_id),
key (product_id)
)
engine=innodb;

-- STORED PROCEDURES

drop procedure if exists insert_order;

delimiter #

create procedure insert_order
(
in p_user_id int unsigned
)
proc_main:begin

declare v_order_id int unsigned default 0;

    insert into orders (user_id, order_date, total) values (p_user_id, now(), 0);

    set v_order_id = last_insert_id();

    -- do more things with v_order_id ??

    select v_order_id as order_id;

end proc_main #

delimiter ;

drop procedure if exists insert_order_item;

delimiter #

create procedure insert_order_item
(
in p_order_id int unsigned,
in p_product_id smallint unsigned,
in p_qty smallint unsigned
)
proc_main:begin

declare v_item_id int unsigned default 0;
declare v_price decimal(10,2) default 0;
declare v_subtotal decimal(10,2) default 0;

    select price into v_price from products where product_id = p_product_id;

    set v_subtotal =  v_price * p_qty;

    insert into order_items (order_id, product_id, qty, price, subtotal) values 
        (p_order_id, p_product_id, p_qty, v_price, v_subtotal);

    set v_item_id = last_insert_id();

    -- do more things with v_item_id ??

    update orders set total = total + v_subtotal where order_id = p_order_id;

    select p_order_id as order_id, v_item_id as item_id, 
        v_price as price, v_subtotal as subtotal;

end proc_main #

delimiter ;

-- TEST DATA

insert into users (username) values ('f00'),('bar'),('alpha'),('beta'),('gamma');
insert into products (name, price) values ('product 1', 9.99),('product 2',12.34),('product 3',32.50),('product 4',1.99);

you have set the total variable to 0 thats why the total cost on the order table shows zero.

$total = 0; // Total cost of the order.
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!