jCart购物车库

时间:2013-05-18 05:05:49

标签: php session session-variables shopping-cart

我使用的是购物车:

http://conceptlogic.com/jcart/

但是在到达结账位置后,我想对进程进行更改。

我想改变它是由用户完成的篮子的数据内容。在这方面,我想采取:

items, names, prices, qtys, itemCount and subtotal

我可以通过以下方式查看详细信息:

<?php
echo '<pre>';
print_r($_SESSION['jcart']);
echo '</pre>';
?>

如何从jcart会话中提取数据?

我想将此数据发送给通过电子邮件发送给执行交易的购物车用户的数据

1 个答案:

答案 0 :(得分:0)

你可以尝试:

foreach($jcart->get_contents() as $item) {
    $itemID = $item['id']; //gets the item's ID
    $itemName = $item['name']; //gets the item's name
    $itemPrice = $item['price']; // gets the item's price
    $itemQuantity = $item['qty']; // gets number of this product in cart
    $itemTotal = $item['price']*$item['qty']; // total order value of this line item
}

这是一个循环并计算商品总数和购物车总价值的简单案例。