i have question. I have 2 tabel, name is 'tbl_pendidikan' and 'tbl_datapribadi'. And i have Model, name is M_pascasarjana.php
function pendidikan($table,$data) {
$this->db->select_max('id_pendaftar');
$get_id = $this->db->get('tbl_datapribadi');
$query = $this->db->insert($table,$data);
} //END FUNCTION//
This is my controller
foreach($_POST['user'] as $user) {
$this->m_pascasarjana->pendidikan('tbl_pendidikan', $user);
}
I try to get last id from table 'tbl_datapribadi'. How to insert last id to table 'tbl_pendidikan'?