In this tutorial you will learn about the how to get last inserted id in codeigniter example and its application with practical example.
In this how to get last inserted id in codeigniter example tutorial I will show you how to get last inserted id in codeigniter. In this tutorial you will learn to get last inserted id after codeigniter insert query. In this article I will share example to show you how to get last inserted record id on insert query in codeigniter.
how to get last inserted id in codeigniter example
In this step by step tutorial I will demonstrate you with example how to get last inserted id in codeigniter. Below is example to show you to get last record id from MySQL using CodeIgniter.
Example:-
1 2 3 4 5 6 7 8 9 10 11 12 |
public function add() { $this->load->database(); $last_record = $this->db->order_by('id',"desc") ->limit(1) ->get('users') ->row(); echo "<pre>"; print_r($last_record); echo "</pre>"; die; } |