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

后端 未结 9 975
庸人自扰
庸人自扰 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条回答
  •  盖世英雄少女心
    2020-11-28 02:17

    From the documentation:

    $this->db->insert_id()

    The insert ID number when performing database inserts.

    Therefore, you could use something like this:

    $lastid = $this->db->insert_id();
    

提交回复
热议问题