इसलिए $this->db->insert_id()
और आपके डेटाबेस में कोई ऑटो इंक्रीमेंटेड आईडी नहीं है
डेटा की जाँच करने के लिए सम्मिलित किया गया है या उपयोग नहीं किया जा रहा है
$this->db->affected_rows()
मॉडल
function signup_insert($data) {
$result = $this->db->insert('registration_detail', $data);
$rows = $this->db->affected_rows();
if($rows>0){
return $rows;
}else{
return FALSE;
}
}
पढ़ें http://www.codeigniter.com/user_guide/database/helpers.htmlए>