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. […]

How To Make Simple CRUD Using PHP and MySQL

user list

In this tutorial, we are going to see an example program to learn how to do database CRUD using PHP and MySQL. CRUD tends to Create, Read, Update and Delete operations with database table records. In the previous tutorial, we have seen how to access MySQL database via PHP. In this example, we are going […]

How to Send Emails with PHP Mail() Function

php mail

Sendmail in PHP is possible with just single line of code. PHP contains built-in mail functions to send mail. There are reasons why I am feeling embraced with this PHP feature. Because I write lot of code for sending mails regularly. PHP really saves our time with its built-ins. Quick Example n this tutorial, we […]

How to set and unset session in PHP?

php session

This article contains sections that describe the PHP sessions (set and unset session), their time-limit configurations. It provides examples for setting session limits and tracking existence. PHP session is one of the methods for keeping data persistence on the server side. PHP sessions have a deadline time limit for keeping data persistent. PHP configuration file […]