Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <!--<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-- >
- <!- as informacoes do formulario irao para dados.php, pelo metodo POST
- Nome: <input type="text" name="nome"> <br>
- Email: <input type="email" name="email"> <br>
- <input type="submit" value="enviar">
- </form>-->
- <form action="dados.php" method="GET">
- <!-- O GET ira passar as informações pela url, sendo visivel a todos-->
- Nome: <input type="text" name="nome"> <br>
- Email: <input type="email" name="email"> <br>
- <input type="submit" value="enviar"> <br>
- <!-- <a href="dados.php?idade=20&sobrenome=Junio">Enviar dados</a> <!--passando dados pela url com metodo get sem precisar estar n oformulario -->
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement