Advertisement
layet

PHP

Feb 25th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. //(PAGINA HTML)//
  2.  
  3. <html>
  4.   <head></head>
  5.  <body>
  6.       <form method=POST action="processo.php">
  7.          Digite um numero:
  8.          <input type=number name=num1>
  9.          Digite outro numero:
  10.          <input type=number name=num2>
  11.          <input type=submit value=Calcular>
  12.      </form>
  13.  </body>
  14. </html>
  15.  
  16. //(PAGINA INDEX.PHP)//
  17.  
  18. <?php
  19. $num1=$_POST['num1'];
  20. $num2=$_POST['num2'];
  21. $resultado=  $num1+ $num2;
  22. echo "O resultado é $resultado";
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement