Created
March 9, 2018 12:45
-
-
Save wichaksono/9982066b1a6acf6b19e59be9749467ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$a = 5; | |
$b = 10; | |
# if contoh 1 | |
if ( $a > $b ) { | |
echo 'benar'; | |
} else { | |
echo 'salah'; | |
} | |
#atau if contoh 2 | |
if ( $a > $b ) : | |
echo 'benar'; | |
else : | |
echo 'salah'; | |
endif; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment