how to get last insert id after insert query in codeigniter active record

后端 未结 9 973
庸人自扰
庸人自扰 2020-11-28 01:59

I have an insert query (active record style) used to insert the form fields into a MySQL table. I want to get the last auto-incremented id for the insert operation as the re

9条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-28 02:28

    A transaction isn't needed here, this should suffice:

    function add_post($post_data) {
        $this->db->insert('posts',$post_data);
        return $this->db->insert_id();
    }
    

提交回复
热议问题