<!DOCTYPE html>
<html>
<body>
<?php
$a = 4;
if($a < 5):
echo "Less than five";
endif;
?>
</body>
</html>