How to get last inserted id in Codeigniter Example

Codeigniter get last insert id example; In this tutorial you will learn how to get last inserted id in codeigniter. This example show you Codeigniter get last insert record from database in controller file. Codeigniter framework already provide us more then query for getting data from database. Codeigniter provide us insert_id() method to get last … Read more

How to get last Executed Query in Codeigniter

Codeigniter get last executed query example; In this tutorial you will learn how to get last executed sql query in codeigniter 3 or 4 project. This example show you how to get last executed query using last_query() function of db class in codeigniter application. In codeigniter simple to use $this->db->last_query() function to print last executed … Read more

Codeigniter 3 CRUD Operation with Bootstrap and MySQL Example

In this post, you will learn how to build a simple Codeigniter 3 CRUD Operation with MySQL Example functionality with Bootstrap and MySQL. CRUD is an acronym for Create, Read, Update, and Delete. CRUD operations are basic data manipulation for database. For knowing better way to any framwork we need to build basic crud generator. This post contains Codeigniter … Read more