Skip to content

Instantly share code, notes, and snippets.

@edirpedro
Last active August 29, 2015 14:09
Show Gist options
  • Save edirpedro/a9c9f250705e813fe26e to your computer and use it in GitHub Desktop.
Save edirpedro/a9c9f250705e813fe26e to your computer and use it in GitHub Desktop.
Execução de formulário simples com retorno usando a mesma página
<?php
// Executa o formulário quando submetido
if (!empty($_POST)) {
$nome = $_POST['nome'];
$mensagem = "Formulário processado $nome!";
}
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Formulário</title>
</head>
<body>
<?php if(!empty($mensagem)) : ?>
<p><?php echo $mensagem ?></p>
<?php endif; ?>
<form action="form.php" method="post">
<label for="field_nome">Nome</label>
<input type="text" id="field_nome" name="nome" value="">
<input type="submit" value="Enivar">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment