0

Get Last Inserted Row ID in Codeigniter

Posted May 9th, 2010 in News and tagged , , , , , , , by Gevork

It’s Simple like magic. How? Just one line

$this->db->insert_id();

Note: Helper uses php  php function mysql_insert_id

Note2:

Retrieves the ID generated for an AUTO_INCREMENT column by the previous query (usually INSERT).

Have Fun.

Leave a Reply