Answers for "get the primary key of last inserted id codeigniter3"

PHP
0

codeigniter return last inserted id

$this->db->insert('posts', $post_data);
   $insert_id = $this->db->insert_id();
   return  $insert_id;
Posted by: Guest on September-26-2020

Code answers related to "get the primary key of last inserted id codeigniter3"

Browse Popular Code Answers by Language