Answers for "if echo statement php"

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

Browse Popular Code Answers by Language