Last active
June 21, 2017 22:40
-
-
Save NandoKstroNet/b692476b0581aae2a1485c46e2bec390 to your computer and use it in GitHub Desktop.
Código criado para a série de posts sobre Como Começar com PHP pra Web da 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 if($a == 15) { | |
print 'A variável $a é igual a 15'; | |
} else { | |
print 'Nenhum valor encontrado...'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment