我是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);
}