How To Get Last Insert id in Magento?
To get Last Insert Id in Magento you have to use specific code that will get you the desired result accordingly. With below given code you will be able to find the correct information easily.
Magento get last insert id:
$model = Mage::getModel('user/profile'); ->setFirstname($firstName); ->setLastname ($lastName); ->setEmail(abc@gmail.com); ->save(); $lastInsrtedId = $model->getId();
The above example will provide you last inserted id in the database table.