Site Cloner PHP Script
Bargain Hunter PHP Script
Job Hunter PHP Script
Site Login and Access Control PHP Script

PHP ISSET

The isset() function checks to see if a variable is set. The isset() function is often used with if and else conditional statements for $_POST variables in a form. For example, if the name field is missing in a form, an error could be prompted.

if isset($name){
do this
}
else {
echo “Please enter your name!”
}