PHP if Statements
PHP Conditional Statements
Conditional statements are used to perform different actions based on different conditions.
In PHP, we have the following conditional statements:
ifstatement - executes some code if one condition is trueif...elsestatement - executes some code if a condition is true and another code if that condition is falseif...elseif...elsestatement - executes different codes for more than two conditionsswitchstatement - selects one of many blocks of code to be executed
PHP - The if Statement
The if statement executes some code
only if the specified condition is true.
Syntax
if (condition) {
// code to be executed if condition is true;
}Example
Output "Have a good day!" if 5 is larger than 3:
if (5 > 3) {
echo "Have a good day!";
}
Try it Yourself »
It is common to use variables in the if statement:
Example
Output "Have a good day!" if $t is less than 20:
$t = 14;
if ($t < 20) {
echo "Have a good day!";
}
Try it Yourself »