Answers for "codeigniter db last insert id"

PHP
5

return last insert id in codeigniter

$id = $this->db->insert_id();
Posted by: Guest on August-26-2020
1

last insert id model codeigniter

function add_post($post_data){
   $this->db->insert('posts', $post_data);
   $insert_id = $this->db->insert_id();

   return  $insert_id;
}
Posted by: Guest on September-01-2020

Code answers related to "codeigniter db last insert id"

Browse Popular Code Answers by Language