In many web applications, we need to implement dropdown list with checkboxes to enable users to select multiple options at the same time. So in this tutorial, you will learn how to implement multi select dropdown with checkbox using Bootstrap. In this tutorial, we will use bootstrap-multiselect.js jQuery Bootstrap plugin to create checkboxes with dropdown […]
Tutorials
Best CodeIgniter Tutorials for Beginners
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 […]
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 […]