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 […]
PHP
Here you will find useful PHP tips and tutorials.
Data Load While Page Scroll with jQuery PHP and MySQL
When we have more data records to display on a page, we used pagination to display just few records when page load and display next few records on every next click. You can replace your traditional pagination with more user friendly feature to load records dynamically on same page while page scroll. Users don’t need […]
Multi Step Form using jQuery, Bootstrap and PHP
Now a day’s Multi Step Forms are more popular due to more users friendly. The Multi Step Form provides easy step by step procedure to complete long FORM. When there is long FORM with too many fields, you can break the large FORM into multiple smaller Forms with few input fields on each Form to […]
Bootstrap Modal Form Submit with Ajax & PHP
Using form in modal is very user friendly way allows to display form to users to submit on same page. So if you’re looking for solution to use form in modal and submit from there, then you’re here at the right place.
Delete Records with Bootstrap Confirm Modal using PHP & MySQL
In this tutorial, you will learn how to implement records delete with Bootstrap confirm modal using PHP and MySQL. Use of default JavaScript confirm modal is common in website to make sure to delete the records or not. The Bootstrap confirms dialogs are very smooth and better UI than default JavaScript confirm dialog. So here […]