摘要: #根据ID来更新一个商品 public function byid_update(){ #获取页面传过来的id $id=$this->uri->segment(4); #根据id来查询出当前分类的子分类 $childs=$this->Category->by... 阅读全文
posted @ 2014-04-15 16:02 麦田守望者~ 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 是否显示: 是 否 是 否 阅读全文
posted @ 2014-04-15 14:47 麦田守望者~ 阅读(2245) 评论(0) 推荐(0) 编辑
摘要: 上级分类: 阅读全文
posted @ 2014-04-15 14:33 麦田守望者~ 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 实用号码归属地查询(IP 地址,手机号码):默认格式: http://api.liqwei.com/location/ (使用来访者的 IP 地址)指定 IP 地址格式: http://api.liqwei.com/location/?ip=202.108.33.32 (新浪的IP)指定手机号码格式... 阅读全文
posted @ 2014-04-15 11:55 麦田守望者~ 阅读(467) 评论(0) 推荐(0) 编辑
摘要: const TBL_CATE = "category"; /** * @access public * @param $pid 节点的id * @param array 返回该节点的所有后代节点 */ public function list_cate($pid = 0){ #获取所有的... 阅读全文
posted @ 2014-04-15 11:31 麦田守望者~ 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 利用uri辅助函数$id=$this->uri->segment(4);其中segment(参数) 是表示你要截取获得第几个数据。 阅读全文
posted @ 2014-04-15 11:17 麦田守望者~ 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 当我们在Controll中把数据传递到view中如: $data['cates_data']=$this->Category_Model->byid_data($id); #调用模型层查询出所有的分类 $data['cates']=$this->Category_Model->lis... 阅读全文
posted @ 2014-04-15 11:14 麦田守望者~ 阅读(310) 评论(0) 推荐(0) 编辑
摘要: db->get(self::TBL_CATE); $cates = $query->result_array(); #对类别进行重组,并返回 return $this->_tree($cates,$pid); } /** *@access private *@param $arr arra... 阅读全文
posted @ 2014-04-15 10:21 麦田守望者~ 阅读(509) 评论(0) 推荐(0) 编辑