从表行插入多行到数据库

时间:2016-01-25 07:44:37

标签: php mysql codeigniter

我的PHP / SQL代码有点问题。我必须使用这种方法将数据插入数据库:

Screen

所以我编写了这个模型来执行此操作:

function sendPricings() {

            $datas = $this->input->post('checkbox');
            $data = array($this->input->post('checkbox'));

            if (!empty($datas)) {

            foreach($this->input->post('fvat') as $row){

                $data = array(
                    'fvat'          =>      $row,
                );

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

但这种方法并不奏效。

任何人都可以帮我构建工作方法或告诉我如何做到这一点?
我正在使用CodeIgniter2.x PHP Framework。

0 个答案:

没有答案