Welcome Guest, Not a member yet? Register   Sign In
Return last inserted ID
#2

[eluser]LuckyFella73[/eluser]
If you use the active record class you could return the
id from your model:

Code:
# in your controller
$insert_id = $this->your_model->db_function();


# in your model
// your db-insert stuff here
// then in the end of the models function you called:
return $this->db->insert_id();


Messages In This Thread
Return last inserted ID - by El Forum - 07-26-2009, 12:46 PM
Return last inserted ID - by El Forum - 07-26-2009, 01:15 PM
Return last inserted ID - by El Forum - 07-26-2009, 01:39 PM
Return last inserted ID - by El Forum - 07-26-2009, 02:29 PM
Return last inserted ID - by El Forum - 07-26-2009, 04:30 PM
Return last inserted ID - by El Forum - 07-27-2009, 08:54 AM
Return last inserted ID - by El Forum - 07-27-2009, 09:15 AM
Return last inserted ID - by El Forum - 07-27-2009, 09:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB