Welcome Guest, Not a member yet? Register   Sign In
How to the fetch id of newly created entry
#3

[eluser]pointer[/eluser]
Code:
$this->db->limit(1);
$this->db->from('table');
$this->db->order_by('id', 'desc');
$data['query']=$this->db->get();
or
Code:
$data['query']=$this->db->query("SELECT id FROM table ORDER BY id DESC LIMIT 1");


Messages In This Thread
How to the fetch id of newly created entry - by El Forum - 11-06-2008, 01:33 PM
How to the fetch id of newly created entry - by El Forum - 11-06-2008, 01:54 PM
How to the fetch id of newly created entry - by El Forum - 11-06-2008, 02:14 PM
How to the fetch id of newly created entry - by El Forum - 11-06-2008, 02:35 PM
How to the fetch id of newly created entry - by El Forum - 11-07-2008, 05:23 AM
How to the fetch id of newly created entry - by El Forum - 11-07-2008, 04:49 PM
How to the fetch id of newly created entry - by El Forum - 11-08-2008, 03:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB