Sessions in PHP | PHP Sessions
HTTP is stateless, it can’t carry the values of variables of one page to other page and redirection with values is a basic requirement nowadays. For that we have many…
Difference between include()and require() in PHP | include() vs. require()
In previous post, we have seen how to include files in PHP using include(), require, include_once() and require_once(). All these function helps you to include/insert content of one file to…
Including Files in PHP | include() and require() in PHP
With a single statement in your PHP script, you can incorporate other PHP script. PHP code in this included files will be executed as a part of main PHP script…
PHP Pagination | Pagination in PHP using MySQL
In this PHP tutorial, we will see how to perform pagination in PHP . When you use SQL SELECT statement to fetch records from database, it may result in thousands…
How to Upload Image in Database in PHP | Image Uploading in PHP
In this article, we will see how to upload images using database and display gallery . For image upload we will require an HTML form that allows image uploading , table…
Dropdown List in PHP | Binding Dropdown List with MySQL in PHP
In today's tutorial, we will see how to bind dropdown box with the MySQL table data content of the Dropdown list will not be fixed rather it will come from…
PHP CRUD Tutorial | CRUD in PHP
We have seen insertion, deletion, updation and selection of MySQL data using PHP in previous tutorials. Today we will see all the things together in one application. CRUD : Create,…
How to use Jquery Datepicker in PHP | JQUERY UI : DATEPICKER
In previous tutorial we have seen Introduction of Jquery Introduction to Jquery: A framework made in heaven ;). In this tutorial we are going to see how to use…
Update Data of MySQL using PHP
In today's tutorial we will see how to update MySQL data using PHP. I have divided this updation code in two php files. First is and second file will…