Advertisement
Gleidson_21

pasta index do formulario

Jun 24th, 2021
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.   <meta charset="UTF-8">
  6.   <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8.   <title>Document</title>
  9. </head>
  10.  
  11. <body>
  12.  
  13.   <!--<form action="dados.php" method="POST">  o action especifica para onde enviar os dados ao clicar em enviar -- O post envia os dados em uma transação HTTP-- >
  14.     <!- as informacoes do formulario irao para dados.php, pelo metodo POST
  15.  
  16.     Nome: <input type="text" name="nome"> <br>
  17.     Email: <input type="email" name="email"> <br>
  18.     <input type="submit" value="enviar">
  19.  
  20.   </form>-->
  21.   <form action="dados.php" method="GET">
  22.     <!-- O GET ira passar as informações pela url, sendo visivel a todos-->
  23.  
  24.     Nome: <input type="text" name="nome"> <br>
  25.     Email: <input type="email" name="email"> <br>
  26.     <input type="submit" value="enviar"> <br>
  27.  
  28.   <!--  <a href="dados.php?idade=20&sobrenome=Junio">Enviar dados</a> <!--passando dados pela url com metodo get sem precisar estar n oformulario -->
  29.  
  30.  
  31.   </form>
  32. </body>
  33.  
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement