012 - if statementsHere is other statementno A is SmallerHere is other statementA is SmallerHere is other statementA 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>";
?>