When we are working with codeigniter you can see index.php in the url after the base_url.So here we're discuss how to remove index.php part from the url.We can do it…
When you working in the codeigniter, you want to send message or data from controller to view files.It can be done by using flash messages.But sometimes flash message doesn't work.It…
How to creating and integrate gmail, facebook like chat system to the CodeIgniter system or web site.In this article is describing step by step how to integrate simple chat process…
How to direct call to the function from the view without using controller in CodeIgniter.Here is a example to it.Simply call to helper function and it get data from model.
First…
I'll use CodeIgniter's pagination library to show you how you can create a paginated list of results from a MySQL database. Along the way, you'll also see how to fix…
How to send and get data by using flash messages in the codeigniter.This is simple and passing data using array.But if you reload/refresh the page, your data may not be…
How to get site url of the codeigniter.You can use this method in the controller,model and view files.
First, you have to call this URL Helper file.
$this->load->helper('url');
How to fetch url parameters in the codeigniter.This is very simple.All data get as an array.
Example
http://www.mysite.com/index.php/deposit/11/3
index.php => 0
deposit => 1
11 => 2
3 => 3
Here is a method to get parameters.