The built-in $_GET function is used to collect values in a form with method="get".
Functions in PHP
A function is just a name we give to a block of code that can be executed whenever we need it.
For loop in PHP
Like while loop, for loop also used to execute the block of codes if the condition is true. FOR is used when you know how many times the scr...
Do-while loop in php
Like while loop Do-while is also used to execute the block of code while the condition is true.
While loops in PHP
Loops are used to execute the specified block of codes for a number of times, or while the specified condition is true.
Arrays in PHP
Array is an single variable that holds multiple values. In an array you can store the related values into a single variable.
Switch statements in PHP
By using IF,ELSE,ELSEIF we have to check each and every condition. WIth the use of SWITCH statement you can check for all condiitons at once...
IF-ELSEIF-ELSE Statement in PHP
Use the IF-ELSEIF-ELSE statement to select one of several blocks of code to be executed.
IF...ELSE Statement in PHP
Use the IF...ELSE statement to execute some code if a condition is true and another code if a condition is false.
IF Statement in PHP
Conditional statements are used to perform different actions based on different conditions.
Retrieving data from the MYSQL database using PHP
In mysql, the SELECT command is used to retrieving data from the database. We can get the single value or a array of values from the databa...
Insert data into Mysql database using php
When data is put into a MySQL table it is referred to as inserting data. When inserting data it is important to remember the exact names and...
Connect PHP with MYSQL database
Mysql is mostly used with PHP for storage and retrieving purpose .Before you can access a data in a database, you need to create a connectio...
PHP introduction
PHP stands for PHP: Hypertext Preprocessor. PHP is an Open source software.PHP is a powerful tool for making a interactive web services.PHP ...