Answers for "end else php"

PHP
0

php end if

<?php
	if (something):
		echo "something";
	endif;
?>
Posted by: Guest on May-17-2021
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