Basic Use of the if Statement
<?php if (true) echo "This will always display!<BR>"; if (false) { echo "This will never, ever be displayed.<BR>"; } else { echo "This too will always display!<BR>"; } ?>