Course Content
Introduction to CodeIgniter
CodeIgniter is a powerful PHP framework built for developers who need a simple and elegant toolkit to create full-featured web applications.
0/3
MVC (Model-View-Controller)
MVC stands for Model-View-Controller. MVC is an application design model consisting of three interconnected parts. They include the model (data), the view (user interface), and the controller (processes that handle input).
0/6
Sessions
The Session class allows you to maintain a user’s "state" and track their activity while they browse your site.
0/1
URI Routing
There is a one-to-one relationship between a URL string and its corresponding controller class/method. The segments in a URI normally follow this pattern:
0/1
Forms and Input
Forms provide a way for users to interact with the application and submit data.
0/1
Composer
Composer is dependency manager in PHP. it allows you to declare the libraries your project depends on and it will manage (install/update) them for you.
0/1
Security
You can enable CSRF protection by modifying your application/config/config.php file
0/1
Working with Database
Like any other framework, we need to interact with the database very often and CodeIgniter makes this job easy for us. It provides a rich set of functionalities to interact with the database.
0/5
DataTable
DataTables is a table enhancing plug-in for the jQuery Javascript library that helps in adding sorting, paging, and filtering abilities to plain HTML tables with minimal effort. The main goal is to enhance the accessibility of data in normal HTML tables.
0/1
Spreadsheet
PhpSpreadsheet is a PHP library for reading and writing spreadsheet files. Importing Excel and CSV into MySQL help to save the user time and avoid repetitive work.
0/1
Payment Gateway
Razorpay and PayTM Payment Gateway
0/2
Chatbot
WhatsApp Chatbot and Telegram Chatbot
0/2
CodeIgniter 3
About Lesson

Routing rules are defined in your application/config/routes.php file.

There is a one-to-one relationship between a URL string and its corresponding controller class/method. The segments in a URI normally follow this pattern:

example.com/class/function/id/

In some cases, you may want to remap this relationship so that a different class/method can be called instead of the one corresponding to the URL.

To learn how to implement routers on a real-world project, we will assume that we are creating an application for managing contact details. The following table shows the URLs that will be working with.

No. URL Route Controller Method
1 / $route[‘default_controller’] Contacts index
2 /contacts $route[‘contacts’] Contacts list
3 /contacts/add $route[‘contacts/add’] Contacts add
4 /contacts/edit/id $route[‘contacts/edit/(:num)’] Contacts edit
5 /contacts/update/id $route[‘contacts/update/(:num)’] Contacts update
6 /contacts/delete/id $route[‘contacts/delete/(:num)’] welcome delete

Create URLs for Applications

create routes for our project. Open application/config/routes.php

$route['default_controller'] 		= 'contacts';
$route['contacts'] 			= 'contacts/list';
$route['contacts/add'] 			= 'contacts/add';
$route['contacts/edit/(:num)']		= 'contacts/edit/$1';
$route['contacts/update/(:num)'] 	= 'contacts/update/$1';
$route['contacts/delete/(:num)'] 	= 'contacts/delete/$1';

$route['404_override'] 			= '';
$route['translate_uri_dashes'] 		= FALSE;

The following table shows the respective URLs obtained from the above-defined routes

No. Route URL
1 $route[‘default_controller’] = ‘contacts’; http://localhost
2 $route[‘contacts’] = ‘contacts/list’; http://localhost/contacts
3 $route[‘contacts/add’] = ‘contacts/add’; http://localhost/contacts/add
4 $route[‘contacts/edit/(:num)’] = ‘contacts/edit/$1’; http://localhost/contacts/edit/1
5 $route[‘contacts/update/(:num)’] = ‘contacts/update/$1’; http://localhost/contacts/update/1
6 $route[‘contacts/delete/(:num)’] = ‘contacts/delete/$1’; http://localhost/contacts/delete/1