How to submit a PHP form using ajax ?

PHP Registration Form with jQuery AJAX

In this article, we will see the use of the AJAX request to submit a form . The form will be submitted by sending the POST request to the server where the data will be stored. In this article, we gave an example registration form for collecting user information. After client-side validation, these form data […]

How to Update Delete Multiple Rows Using PHP

Update-Delete-Multiple-Rows

We are well expertise with PHP CRUD operations by accessing MySQL via PHP logic. Yet, we have seen about how to update and delete table rows one at a time. This article deals with Update Delete Multiple Rows using PHP. For selecting multiple rows, we are going to use checkbox input for submitting selected rows […]

Make Pagination using Ajax with Jquery, PHP and MySQL

Pagination using Ajax feature is for limiting the number of results instead of loading all in a list page. Loading multiple records with pagination will increase efficiency to load result page by page. We have seen several examples for PHP pagination with database results. For the pagination functionality, a perpage result count will be configured. […]

How to access MySQL database in PHP

php-mysql-files

In this tutorial, we are going to access MySQL database from PHP. Accessing MySQL from PHP is very simple and easy to implement. PHP contains MySQLi class functions to connect and access the database. Some of those are used in this article. This article contains a short example of accessing databases using PHP and MySQL. […]