How to get last insert id in Codeigniter
$this->db->insert(‘users’, $data); # where $data is an array
$insert_id = $this->db->insert_id(); # insert_id() fucntion returns last insert id
return $insert_id;
$this->db->insert(‘users’, $data); # where $data is an array
$insert_id = $this->db->insert_id(); # insert_id() fucntion returns last insert id
return $insert_id;
Below code can be helpful $this->response->file($this->DIR.$file, array('download' => true, 'name' => "$file")); read more
In simple words, class is a user defined datatype. Which have its... read more
Screen Got stuck eventually with this error during CodeIgniter development. Fatal error: Class... read more
ERROR - 2017-02-18 14:17:00 --> Could not find the specified $config['composer_autoload'] path:... read more
If you are a victim of Browser Modifier Virus ( malware ) Browser... read more
$this->session->mark_as_flash('item'); # Version 3.x only $this->session->mark_as_flash(array('item', 'item2')); # Version 3.x only Array to... read more
With our data increasingly moving to the cloud, chances are that whenever... read more
Have you ever read emailed somebody and spent time wondering whether they... read more
Try "keypress" evenHandler in jQuery: Notice Below Code, Although this code is correct... read more
As per official bootstrap documentation about "sr-only CSS class":
Leave a Reply
You must be logged in to post a comment.