使用foreach循环在Codeigniter中插入数据

时间:2018-06-07 09:48:07

标签: php foreach sql-insert

我是codeigniter的新手。我使用表来收集多个数据。在使用foreach循环在数据库中插入这些数据时,我需要发送另一个表的当前日期和insert_id()。如何在foreach循环中传递这些局部变量。

        $this->db->insert('student', $data);
        $insert_id = $this->db->insert_id();



    foreach($_POST['student'] as $student)

    {

    'student_detail_student_id'     = $insert_id,

    'student_detail_mddt'           = date("Y-m-d H:i:s")

    $this->db->insert('student_details', $student);

   }                      

0 个答案:

没有答案