how to get last insert id - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: how to get last insert id (/showthread.php?tid=75115) |
how to get last insert id - imam - 12-25-2019 pls how to get the last insert id after save model? Code: $emp_model = new \App\Models\Employee\Employeemodel(); i try to write code $emp_model->id is return null; my model like below Code: class EmployeeModel extends Model{ thanks RE: how to get last insert id - dannyweb - 12-25-2019 $model->insertID(); RE: how to get last insert id - InsiteFX - 12-26-2019 PHP Code: $lastInsertID = $db->insertID(); RE: how to get last insert id - maulahaz - 12-26-2019 Try to ans, hopefully this solution can solve u're problem: In CI-3, i do like this: Field 'Id' => Primary Key and Auto Increment Code: //MODEL RE: how to get last insert id - imam - 12-27-2019 (12-26-2019, 09:55 AM)InsiteFX Wrote: Thank you let me try, RE: how to get last insert id - imam - 12-31-2019 (12-27-2019, 12:08 AM)imam Wrote:(12-26-2019, 09:55 AM)InsiteFX Wrote: Solved Code: $this->resp_json['id'] = $emp_model->getInsertID(); Thank you All |