Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Last active June 21, 2017 22:09
Show Gist options
  • Save NandoKstroNet/54bd80441d7ef73adbdcc7926f224167 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/54bd80441d7ef73adbdcc7926f224167 to your computer and use it in GitHub Desktop.
Código criado nos posts da série como começar a desenvolver com PHP pela Code Experts Learning
<?php
$a = 15;
if($a == 10) {
print 'A variável $a é igual a 10';
} else {
print 'A variável $a não é igual a 10';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment