Vandaar $this->db->insert_id()
En er is geen automatisch verhoogde id in uw database
OM te controleren of de gegevens zijn ingevoegd of niet gebruiken
$this->db->affected_rows()
Modellen
function signup_insert($data) {
$result = $this->db->insert('registration_detail', $data);
$rows = $this->db->affected_rows();
if($rows>0){
return $rows;
}else{
return FALSE;
}
}
Lees http://www.codeigniter.com/user_guide/database/helpers.html