Answers for "get mysql last insert id in library codeigniter"

PHP
2

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 "get mysql last insert id in library codeigniter"

Browse Popular Code Answers by Language