HomePHP Contoh If Then Else PHP Didik Sazali February 21, 2015 0 Comments Facebook Twitter 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; } ?> Tags PHP Facebook Twitter
Post a Comment