.


Divya


Get last insert id after insert query CakePHP framework


In this example i am going to show you how to get the last insert id after insert data in database.

For CakePHP 3.x

$result = $this->ModelName->save($this->request->data);
$insertedId = $result->id;

For CakePHP 2.x

$this->ModelName->save($this->request->data);
$insertedId = $this->ModelName->getLastInsertId();

insert_id() function will return zero if table does not have auto incremented column so make sure table must have a column with AUTO_INCREMENT attribute.



.