简体   繁体   English

Codeigniter将数组插入数据库

[英]Codeigniter insert array into database

I am currently making a registration form where in you could register individually or by many I need a way how to make the multiple register work i cant add the input into db i get an array to string conversion error i still dont have the model for this 我目前正在制作一个注册表格,您可以在其中单独注册,也可以由许多人注册,我需要一种方法来使多重注册有效,我无法将输入添加到db中,但无法得到数组到字符串转换的错误,但是我仍然没有此模型

my code is controller 我的代码是控制器

public function registerbatch(){
            for ($i = 0; $i < count($this->input->post('surname','firstname','age','school','course','email')); $i++) {
                $this->form_validation->set_rules("surname[$i]", "surname[$i]", "required");
                $this->form_validation->set_rules("firstname[$i]", "firstname[$i]", "required");
                $this->form_validation->set_rules("age[$i]", "Age[$i]", "required");
                $this->form_validation->set_rules("school[$i]", "School[$i]", "required");
                $this->form_validation->set_rules("course[$i]", "Course[$i]", "required");
                $this->form_validation->set_rules("email[$i]", "Email[$i]", "required");
            }
            if ($this->form_validation->run() == TRUE) {

                $reg_dat = array(

                    'surname' => $this->input->post('surname'),
                    'name' => $this->input->post('firstname'),
                    'age' => $this->input->post('age'),
                    'school' => $this->input->post('school'),
                    'course' => ($this->input->post('course')),
                    'email' => ($this->input->post('email')),

                );
             $this->user_model->add_user($reg_dat);
             $this->load->view('user/home_view');
            } else {
                $this->load->view('user/batch_register');
            }

view: 视图:

<html>
<head>
</head> 
<body>  
    <form class="form" action="<?php echo base_url() . 'user/registerbatch'; ?>" method="post" class="form-horizontal" role="form">


        <?php for ($i = 0; $i < $num; $i++): ?>
        <br>
        Surname: <input type="text" name="surname[]">
        <br>
        Name: <input type="text" name="firstname[]">
        <br>
        Age:<input type ="int" name ="age[]">
        <br>
        School: <input type="text" readonly value="<?= $school ?>" name="school[]">
        <br>
        Course:<input type ="text" name ="course[]">
        <br>
        Email:<input type ="text" name ="email[]">
        <br>
        <br>


    <?php endfor ?>
   <button type="submit" class="btn btn-success">Register</button>


</body>
</html> 

Try this below coding .... 试试下面的编码....

  if ($this->form_validation->run() == TRUE) {

  extract($_POST);

  foreach($surname as $key=>$value) {

                $reg_dat = array(

                    'surname'   => $value,
                    'name'      => $firstname[$key],
                    'age'       => $age[$key],
                    'school'    => $school[$key],
                    'course'    => $course[$key],
                    'email'     => $email[$key],

                );
             $this->user_model->add_user($reg_dat);

}

}

$this->load->view('user/home_view');

Seems that your Post can be a multidimensional array. 似乎您的帖子可以是多维数组。 I think the best way to solve your problem is to foreach that post and insert every row 我认为解决问题的最佳方法是遍历每个帖子并插入每一行

       //your controller
       if ($this->form_validation->run() == TRUE) {
           $reg_dat_multi = $this->input->post(); 
           foreach  ($reg_dat_multi as $reg_dat) {
               $this->user_model->add_user($reg_dat);
            }
       );

you didn't show your model but let's think that is something like this 您没有显示您的模型,但让我们想像这样

    //your model
    function add_user($reg_dat){
        if ( $this->db->insert('table', $reg_dat) ){
            return true;
        }
        return false; 
    }

hope that helps 希望能有所帮助

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM