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 on my own codeigniterplus project, and if you are familiar with that project, you can … [Read more...] about Using Composer With Codeigniter
codeigniter
How To Work With CodeIgniter Pagination
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, codeigniter provides 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
How To Work With CodeIgniter Forms
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 a contact form or so. As always, codeigniter framework have done an incredible job by providing integrated supports to deal with … [Read more...] about How To Work With CodeIgniter Forms
Working With CodeIgniter Image Manipulation library
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 application framework. Codeigniter image manipulation library provides a very easy and efficient way to provide these kind of … [Read more...] about Working With CodeIgniter Image Manipulation library
Tutorial On Uploading File With CodeIgniter Framework / PHP
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. We also conduct the risk of having buggy code. To recover from these issues and make our development life easier, the Codeigniter framework provides … [Read more...] about Tutorial On Uploading File With CodeIgniter Framework / PHP