If I do getLastInsertId() immediately after a save(), it works, but otherwise it does not. This is demonstrated in my controller:
getLastInsertId()
save()
f
Below are the options:
echo $this->Registration->id; echo $this->Registration->getInsertID(); echo $this->Registration->getLastInsertId();
Here, you can replace Registration with your model name.
Registration
Thanks