Welcome Guest, Not a member yet? Register   Sign In
CI - MySQL - Last Insert ID ?
#3

[eluser]cPage[/eluser]
However, i found out that it could be used only one time. If you want to save the value for a while put the result into a variable.

Code:
$last_insert_id = $this->db->insert_id()

Or for a permanent access to the last row you can do this in a model. (e.g invoice_model)

Code:
function last_invoice()
{
  $int = $this->db->count_all('invoice');
  $query = $this->db->get('invoice',1,$int-1);
  return $query->row()->id_invoice;
}

Thanks for the help its appreciate.


Messages In This Thread
CI - MySQL - Last Insert ID ? - by El Forum - 01-07-2013, 02:48 PM
CI - MySQL - Last Insert ID ? - by El Forum - 01-07-2013, 06:48 PM
CI - MySQL - Last Insert ID ? - by El Forum - 01-07-2013, 09:30 PM



Theme © iAndrew 2016 - Forum software by © MyBB