012 - if statements
Here is other statement
no A is Smaller
Here is other statement
A is Smaller
Here is other statement
A is Smaller
A is Smaller
Here is other statement
<?php // 012 - if statements , can have multiple if statments echo "</br><span class='myheading'>012 - if statements</span></br>"; $a = 10; $b = 10; if($a < $b){ echo "yes A is Smaller</br>" ; } echo "Here is other statement</br>"; if($a == $b){ echo "no A is Smaller</br>" ; } echo "Here is other statement</br>"; if($a === $b){ echo "A is Smaller</br>" ; } echo "Here is other statement</br>"; if($a == $b): echo "A is Smaller<br>" ; echo "A is Smaller<br>" ; endif; echo "Here is other statement</br>"; ?>