Answers for "ci last insert id"

PHP
1

codeigniter last insert id

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
0

codeigniter last insert id

$last_inserted_id = $this->db->insert_id();
Posted by: Guest on March-01-2021

Browse Popular Code Answers by Language