Advertisement
hercioneto

Exercicio2 Form - 2019 PW2

Apr 1st, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.     <title>Formulário Dados</title>
  7. </head>
  8. <body>
  9.     <form action="calcular.php" method="POST">
  10.  
  11. <div>Código: <br><input type="text" name="codigo"></div>
  12.  
  13. <div>Nome: <br><input type="text" name="nome"> e Sobrenome: <input type="text" name="sobrenome"></div>
  14.  
  15. <div>Valor unitário da venda <br><input type="text" name="valorUnitario"></div>
  16.  
  17. <div>Vendas totais: <br><input type="text" name="vendasTotais"></div>
  18. <div><input type="submit" name="enviar" value="Enviar"></div>
  19. </form>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement