求 CodeIgniter 购物车例子
我这样构造数据 然后插入$data = array(
'id' => 1,
'qty' => 1,
'price' => 100,
'name' => productname,
'options' => array('Name' => 'aaa', 'Color' => 'Red')
);
$this->cart->insert($data);
这样读取出来却没用
foreach($this->cart->contents() as $items){
echo "aaa";
echo $items->name;
}
有没有谁能发段代码来看看啊 谢谢啊 “没用”是什么意思?
说明白点儿。 读不出数据出来 好像没插进去啊 you can read user_guide first!
this is the page:how to use the cart
页:
[1]