Last active
June 21, 2017 22:09
-
-
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
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 = 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