代码点火器batch_insert

时间:2016-01-20 10:58:24

标签: codeigniter

我有一个问题,我想制作一个调查应用程序,从数据库中检索问题并在带有单选按钮的表单中循环,在提交时我得到一个多维数组。有人可以帮助完成这样一个过程。从表单到控制器再到模型?

这是我的方法

public function registerSelfAdmin(){
         $fieldsData = $this->db->field_data('response');
          foreach ($fieldsData as $key => $field){
            $datacc = array(  $field->name => $this->input->post($field->name) );
            $this->db->insert('response', $datacc);

          }
          return ($this->db->affected_rows() != 1) ? false : true;

         // $query=$this->db->insert_batch('response',$newData,'question_id');
         // return ($this->db->affected_rows() != 1) ? false : true;
    }

0 个答案:

没有答案