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…
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…
Delete data from MySQL using PHP | Delete Multiple Data from MySQL using PHP
After Inserting Data in MySQL using PHP and Fetching MySQL data using PHP, now we are going to see how to delete data from MySQL using PHP. In this post we have…
Create Database and Create Table in MySQL using PHP
In this session of PHP, we will create database and table in MySQL using PHP : You can also create it using PHPMyAdmin. We will use CREATE DATABASE & CREATE…
Setting Up the Environment for PHP | PHP Tutorial
Before starting PHP, we have to set environment for it. PHP is available for almost all platform. To set up the environment for PHP you need three components must be…