Created
December 5, 2016 23:42
-
-
Save ilhamarrouf/499ec9cdeda8f0797c36569e1fb25fc9 to your computer and use it in GitHub Desktop.
Struktur Kontrol PHP
This file contains 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 | |
$nilai = 70; | |
if ($nilai > 60) { | |
echo 'lulus'; | |
} else { | |
echo 'mengulang'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment