For all web app developers who have started using modern frameworks like Symfony, Silex, Laravel, etc. and have wished for composer support inside their CodeIgniter application, I will try to show you the most efficient and standardized way to achieve this goal. I have also added this feature to my CodeigniterPlus project, and if you are familiar with that project, you can also … [Read more...] about Using Composer With 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 on a single page. As a robust framework, Codeigniter provides a very efficient way to handle it with its integrated support. In this tutorial, we will see how we can implement … [Read more...] about How To Work With CodeIgniter Pagination
For a web application, HTML forms are probably the most important sections. These are the real interfaces that make it possible to communicate and receive/store data from visitors. Nowadays, we can't even imagine a website without at least a contact form. As always, the Codeigniter framework has done an incredible job by providing integrated support to deal with these forms. … [Read more...] about How To Work With CodeIgniter Forms
Upload, crop, re-size, etc, are the basic image customization that most websites or applications need to have. If we start implementing with native PHP support, then this functionality can be pretty big and (maybe) buggy. Here comes the role of an application framework. Codeigniter image manipulation library provides an effortless and efficient way to provide this kind of … [Read more...] about Working With CodeIgniter Image Manipulation library
File upload functionality is one of the most common requirements for most web applications. If we go for raw implementation, we would need to do some basic initialization manually, which makes the code redundant and time-consuming. This risks having buggy code. To recover from these issues and make our development life easier, the Codeigniter framework provides a decent and … [Read more...] about Tutorial On Uploading File With CodeIgniter Framework / PHP