<?php
if( 2 < 4 ) print "2 e mai mic decat 4 <br />";
 
if( 3 > 1 ) {
	print "3 e mai mare ca 1 \n";
	print "<br />";
}
?>