On this blog post I will explain step-by-step guide for performing CRUD (Create, Read, Update, Delete) operations using CodeIgniter.

Step 1: Set Up CodeIgniter

Configure Base URL: Open the application/config/config.php file and set the base_url to match your server environment.

Download CodeIgniter: Download the latest version of CodeIgniter from the official website.

Extract CodeIgniter: Extract the downloaded zip file and move it to your server’s root directory (e.g., htdocs for XAMPP or www for WAMP).

$config['base_url'] = 'http://localhost/your_project_name/';