Skip to content

Instantly share code, notes, and snippets.

@ilhamarrouf
Created December 5, 2016 23:42
Show Gist options
  • Save ilhamarrouf/499ec9cdeda8f0797c36569e1fb25fc9 to your computer and use it in GitHub Desktop.
Save ilhamarrouf/499ec9cdeda8f0797c36569e1fb25fc9 to your computer and use it in GitHub Desktop.
Struktur Kontrol PHP
<?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