从codeigniter中的另一个函数向数据库插入变量值?

时间:2015-05-27 09:00:57

标签: php codeigniter controller

我需要一些帮助。

这是我的控制者:

function result_selected_abc_data(){
$this->auth->restrict();
$this->load->model('usermodel');
$this->load->model('productmodel');
$level=$this->session->userdata('level');
$this->load->library('form_validation');

$this->form_validation->set_rules('date1','Tanggal  Di Masukkan','trim|required');
$this->form_validation->set_rules('date2','Tanggal Belum Di Masukkan','trim|required');
$this->form_validation->set_error_delimiters('<span style="color:#FF0000;">','</span>');

if($this->form_validation->run() == false){
$data['parent']=$this->usermodel->get_data_parent_menu($level);
$data['first_child'] = $this->usermodel->get_data_first_child_menu($level);
$data['second_child'] = $this->usermodel->get_data_second_child_menu($level);
$data['third_child'] = $this->usermodel->get_data_third_child_menu($level);
$data['fourth_child'] = $this->usermodel->get_data_fourth_child_menu($level);
$data['fifth_child'] = $this->usermodel->get_data_fifth_child_menu($level);
$data['sixth_child'] = $this->usermodel->get_data_sixth_child_menu($level);
$data['seventh_child'] = $this->usermodel->get_data_seventh_child_menu($level);
$this->template->display('ABC_select_date',$data);
}else{

$data['selected_date']= array(
          'date1' => $this->input->post('date1'),
          'date2' => $this->input->post('date2')
          );
$date1=$this->input->post('date1');
$date2=$this->input->post('date2');
$data['ABC_report_result']= $this->productmodel->get_ABC_data_based_on_date($date1,$date2);
$this->template->display('ABC_select_data_result',$data);
    }
}

我想在另一个功能中将$ data [&#39; ABC_report_result&#39;]值插入数据库,让我们说保存abc():

function save_abc(){

 **what should I make in here so I can get $data['ABC_report_result'] value and save it to database?**

}

我该怎么办?谢谢您的帮助。

3 个答案:

答案 0 :(得分:0)

在您的控制器中

function save_abc(){
$ArrData = array(
     'database_column'=>'value',
     'database_column2'=>'value2',
);
$this->your_model->your_function($ArrData);

}

在你的模特中

public function your_function($data=''){

        $this->db->insert('your_table',$data);
    }

更新解决方案 您可以在视图文件中执行一项操作在隐藏字段中保存$ date值并创建一个按钮保存调用操作的数据save_abc()现在可以执行

function save_abc(){
   $this->load->model('productmodel');
   $date1=$this->input->post('date1'); //data from hidden field
   $date2=$this->input->post('date2'); //data from hidden field
   $result = $this->productmodel->get_ABC_data_based_on_date($date1,$date2);
  $this->your_model->your_save_function($result);

}

答案 1 :(得分:0)

CodeIgniter中的

您的输入对象是全局可访问的!因此,如果您需要save_abc中的数据,为什么不尝试在目标函数中插入input-&gt; post()方法?

答案 2 :(得分:0)

试试这个:

{{1}}
我错过了一些明显的东西吗?