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

[Web] 求解CI购物车数据到数据库

[复制链接]
发表于 2010-10-5 14:09:45 | 显示全部楼层 |阅读模式
CI的购物类,如何把数据添加到数据库呢,求解大家
发表于 2011-2-10 18:23:24 | 显示全部楼层
正是我所需要的,值了这个东西·                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           礼物网  http://www.liwu800.com/songnvpengyoudeliwu-1-1.html
发表于 2011-2-11 11:48:50 | 显示全部楼层
购物车类利用 CodeIgniter 的 Session 类把购物车信息保存到数据库中,所以在使用购物车类之前,你必须根据 Session 类文档中的说明来创建数据库表,并且在 application/config/config.php 文件中把 Session 相关参数设置为使用数据库。

$this->cart->contents()
发表于 2011-6-11 20:23:47 | 显示全部楼层
建立一个  MY_Cart.php  
application/libraries下

PHP
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class MY_Cart extends CI_Cart {
    function __construct() {
        parent::CI_Cart();
        $this->product_name_rules = 'dD';  
    }
}  
复制代码

本版积分规则