第七節視頻:框架
CI框架學習-實例操做利用AR類對欄目進行查、刪、改動做函數
取cid的方法:學習
$cid = $this->uri->segment(4);//取第4個片斷;this
/*查詢對應欄目*/視頻
public function check_cate($cid){ci
$data = $this -> db ->where(array('cid' => $cid)) ->get('category') ->result_array();get
return $data;io
}function
/*修改欄目*/date
public function update_cate($cid,$data){
$this -> db ->update('category',$data,array('cid'=>$cid));
}
/*刪除欄目*/
public function del(){
$cid = $this -> uri ->segment(4);
$this ->load ->model('category_model','cate');
$this ->cate ->del($cid);
}
/*構造函數*/
/*自動載入*/
public function _construct(){
parent::_construct();
$this ->load ->model('category_model','cate');
}