Advertisement
hercioneto

PW2017 Exercicio Calc

Mar 27th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2.     /*
  3. Criar um formulario para o usuario
  4. informar dois valores e efetuar a soma dos
  5. valores utilizando a classe.
  6.  
  7.  
  8. */
  9. ?>
  10. <html>
  11.     <head>
  12.         <meta charset="utf-8"/>
  13.         <title>
  14.             Valores
  15.         </title>
  16.     </head>
  17.     <body>
  18.         <form action="calcularDados.php" method="post">
  19.             <input type="text" required name="valor1" id="valor1"
  20.             placeholder="Digite o valor 1"/><br/>
  21.             <input type="text" name="valor2" id="valor2"
  22.             placeholder="Digite o valor 2"/><br/>
  23.            
  24.             <input type="submit" value="Somar">
  25.         </form>
  26.     </body>
  27.    
  28.    
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement