Not equal to.
This is an alias of the "!=" operator. It returns TRUE if the first expression is not equal in value to the second. The two expressions or variables do not have to be of the same type.
<?php
if (5.01 <> 5)
print "5.01 is not equal to 5";
?> 5.01 is not equal to 5 Two numbers are compared.