|
楼主 |
发表于 2010-8-24 15:24:24
|
显示全部楼层
controller code:$this->load->model('xxxx_model'); //加载model
//将获得到的值交给model
$this->xxxx_model->model_function($this->input->post('area'));
$this->xxxx_model->model_function($this->input->post('server'));
$this->xxxx_model->model_function($this->input->post('product'));
model code:
function model_function()
{
$this->db->where('area_id',$this->input->post('area'));
$this->db->where('server_id',$this->input->post('server'));
$this->db->where('server_xinghao_id',$this->input->post('product'));
$query = $this->db->get('k_downloadfile');
return $query->result_array();
} |
|