Berikut merupakan contoh penggunaan if then else pada php :

 
<?php

$a = 9;

$b = 7;

if($a>$b)

{

 echo $a.' lebih besar dari '.$b;

}

else

{

 echo $a.' lebih kecil dari '.$b;

}

?>

Post a Comment

Previous Post Next Post