Answers for "3.Write a PHP program to demonstrate the if else if else statement."

PHP
0

php else

<?php
if ($a > $b) {
  echo "a is greater than b";
} else {
  echo "a is NOT greater than b";
}
?>
Posted by: Guest on April-23-2020

Code answers related to "3.Write a PHP program to demonstrate the if else if else statement."

Browse Popular Code Answers by Language