CodeIgniter is a popular open source PHP framework based on MVC (Model–View–Controller) pattern. It is very lightweight and speed up development by providing a rich set of libraries for commonly needed tasks to develop small to large scale of applications. The CodeIgniter framework is very easy to learn to start with it. So in this […]
How to Send Email with Attachment in PHP
In many PHP projects, we generally implement email send functionality such as user email verification, to reset password, contact us page etc. It is just few lines of code to send these type of email. But sometimes we have to implement email send functionality to send email with attachment in PHP. We can implement email […]
Import CSV File into MySQL using PHP
It’s very time consuming to import too many records one by one into MySQL database. To make it convenient, we can implement CSV (comma-separated values) file data import functionality to handle bulk data import. This can be very useful as you just need a CSV file of all records and use that CSV file to […]
CodeIgniter Interview Questions and Answers
CodeIgniter is a popular PHP framework. It is very easy to use and very lightweight. The CodeIgniter can be used to develop any kind of web project from small website to large scale of application. Here is the list of most popular and most asked CodeIgniter Interview Questions with Answers for both beginners and experienced […]
Delete Multiple Rows with Checkbox using jQuery, PHP & MySQL
Deleting records one by one is very time consuming when there are too many records. We can make it more user friendly by allowing users to delete multiple records on a single click. You just need to add checkbox with each records and allow to select checkbox and then implement functionality to delete multiple selected […]