Integer value compare with equal sign
<? $a=100; $b=true; echo "a = $a<br>"; echo "b = $b<br>"; if($a==$b) echo 'a "is equal to" b!'; ?>