Answers for "insert id query codeigniter 3"

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

function id codeigniter 3

UPDATE table_name SET name = 'Rick', email = '[email protected]', url = 'example.com' WHERE author_id = 1 AND status = 'active'
Posted by: Guest on August-18-2020

Code answers related to "insert id query codeigniter 3"

Browse Popular Code Answers by Language