Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created March 9, 2018 12:45
Show Gist options
  • Save wichaksono/9982066b1a6acf6b19e59be9749467ad to your computer and use it in GitHub Desktop.
Save wichaksono/9982066b1a6acf6b19e59be9749467ad to your computer and use it in GitHub Desktop.
<?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