Advertisement
hercioneto

Processar formulário

Oct 31st, 2023
748
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Meu Site!</title>
  6. </head>
  7. <body>
  8.     <h1>RETORNO DAS INFORMAÇÕES</h1>
  9. <?php
  10. //processar_formulario.php
  11. if ($_SERVER["REQUEST_METHOD"] == "POST") {
  12.     $nome = $_POST["nome"];
  13.     $cidade = $_POST["cidade"];
  14.  
  15.     echo "Nome: " . $nome . "<br>";
  16.     echo "Cidade: " . $cidade;
  17. }
  18. ?>
  19. <br>
  20. <h2><?php
  21. echo "Mais uma linha de texto.";
  22. ?></h2>
  23. </body>
  24. </html>
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement