用户
 找回密码
 入住 CI 中国社区
搜索
查看: 3406|回复: 3
收起左侧

[HELP] 求 CodeIgniter 购物车例子

[复制链接]
发表于 2010-5-3 20:21:36 | 显示全部楼层 |阅读模式
我这样构造数据 然后插入
$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;
                        }

有没有谁能发段代码来看看啊   谢谢啊
发表于 2010-5-4 15:28:55 | 显示全部楼层
“没用”是什么意思?
说明白点儿。
 楼主| 发表于 2010-5-4 20:39:17 | 显示全部楼层
读不出数据出来   好像没插进去啊
发表于 2010-5-9 01:24:06 | 显示全部楼层
you can read user_guide first!
this is the page:how to use the cart

本版积分规则