How To Work With CodeIgniter Pagination

codeigniter

Pagination is one of the most frequently used features for web applications. Wherever we have a bunch of data and need to show them as a list, we require pagination to prevent hundreds/thousands of data in a single page. As a robust framework, … [Read more...]

How To Work With CodeIgniter Forms

codeigniter forms tutorial

For a web application, HTML forms are the probably most important sections. Because, these are the real interface which make it happen to communicate and receives/store data from visitors. Now a days, we can't even imagine a website without at least … [Read more...]

Working With CodeIgniter Image Manipulation library

CodeIgniter Image Tutorial

Upload, crop, re-size etc are the basic image customization that most web sites or applications need to have. If we start implementing with native PHP support, then these functionality can be quite big and (may be) buggy also. Here comes the role of … [Read more...]

Tutorial On Uploading File With CodeIgniter Framework / PHP

CodeIgniter Tutorials

File upload functionality is one of the most common requirements for most of the web applications. If we go for raw implementation, we would need to do some basic initialization manually. Which make the code redundant, time-consuming and conduct the … [Read more...]

How To Work With Codeigniter Caching In PHP

Codeigniter Caching Tutorial

For websites/web applications, caching plays a very important role. Today, in this tutorial, I will explain how we can start using codeigniter caching techniques for improving our web application to a new level. I am assuming you have some … [Read more...]

CodeIgniterPlus, The Ultimate CodeIgniter Enhancement

CodeIgniterPlus

This time, I am not going to share a tutorial with you. Instead, I will like to share a resource with you, which may help you have a kick-ass beginning on the way of your web application development. So, today, there will be no code examples to … [Read more...]

Doctrine Model Plugin For Codeigniter

codeigniter

On an earlier tutorial, I did showed how we can easily perform the CRUD operations using doctrine ORM. However, as a lot of developers use doctrine ORM as part of their favorite Codeigntier framework, I came to feel that, it will be very useful if we … [Read more...]

Codeigniter Best Practices And Tips For Efficient Development

codeigniter best practices

A framework can help us to define a set of rules/protocols for our application. However, application source codes can be still messed up if some general best practices aren't followed well. Today, I will try to describe some Codeigniter best … [Read more...]