Answers for "codingneter in insert data and get id"

PHP
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
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

Browse Popular Code Answers by Language