我是新來的笨。可有人請告訴如何在模型控制器通過$row['main_products_cat_id'];
到'id'=> 'my id here',
幫助我。我嘗試了很多方法,但是失敗了。笨將數據傳遞給控制器
謝謝!
這是我的模型
function cart_product_records($id){
$this->db->from('tbl_sub_products');
$this->db->where('tbl_sub_products.sub_product_id', $id);
$query = $this->db->get();
foreach ($query->result_array() as $row){
echo $row['main_products_cat_id'];
echo $row['sub_product_id'];
echo $row['sub_product_name'];
echo $row['sub_product_description'];
echo $row['sub_product_image'];
echo $row['sub_product_price'];
}
return $query->result();
}
這是我的控制器
function shopping_cart(){
$id = $this->input->get('id');
if($query = $this->mod_products->cart_product_records($id)){
$data['result'] = array(
'id' => 'my id here',
'qty' => my qty here,
'price' => my price here,
'name' => 'my product name here'
);
}
}
訪問我認爲這會是'$ query [0] - > main_products_cat_id' – Dan
你是對的。我會從模型中返回$ query [0]。 – Craig