"Welcome to our PHP 101 blog, where we demystify the world of web development. "

Friday, January 19, 2024

PHP - if...else

 PHP - The if...else Statement

The if...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;

}

Example:

$t = date("H");

if ($t < "20") {

  echo "Have a good day!";

} else {

  echo "Have a good night!";

}

Output :

"Have a good day!" if the current time is less than 20, and "Have a good night!" otherwise:



No comments:

Post a Comment

Pages

SoraTemplates

Best Free and Premium Blogger Templates Provider.

Buy This Template