Skip to content

Instantly share code, notes, and snippets.

@nicholasess
Created July 8, 2014 21:58
Show Gist options
  • Save nicholasess/69e9695f231aba93e78c to your computer and use it in GitHub Desktop.
Save nicholasess/69e9695f231aba93e78c to your computer and use it in GitHub Desktop.
<form method="post" action="teste.php">
<input type="text" name="usuario" required>
<input type="password" name="senha" required>
<button>Entrar</button>
</form>
<?php
$usuario = $_POST['usuario'];
$senha = $_POST['senha'];
echo "Usuario: ".$usuario." senha: ".$senha;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment