Get last insert id after insert query CodeIgniter framework
In this example i am going to show you how to get the last insert id after insert data in database.
function save_data($student_data){
$this->db->insert('student_db', $student_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
$this->db->insert('student_db', $student_data);
$insert_id = $this->db->insert_id();
return $insert_id;
}
Comments
Post a Comment