Md. Tanzim Hossen
Web Programmer & Graphics Designer
© 2022 All rights reserved.
PHP if else Condition

PHP if else condition
PHP if else condition is widely used in programming. Whenever we go to write a program, some conditions come everytime. Today I will discuss how to write an if else condition in PHP.
if
statement – executes some code if one condition is trueif...else
statement – executes some code if a condition is true and another code if that condition is false
Syntax:
if (condition) {
code to be executed if condition is true;
} else {
code to be executed if condition is false;
}
Program :
<?php
$t = date(“H”);
if ($t < “20”) {
echo “Have a good day!”;
}
else {
echo “Have a good night!”;
}
?>