Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Last active June 21, 2017 22:40
Show Gist options
  • Save NandoKstroNet/b692476b0581aae2a1485c46e2bec390 to your computer and use it in GitHub Desktop.
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
<?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