Advertisement
Virajsinh

PhP_03_02

Jan 26th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.18 KB | None | 0 0
  1. <title>Third Example Answer</title>
  2. <?php
  3.  
  4. //Use For Hide Error Message
  5. //error_reporting(0);
  6.  
  7. $x = $_POST['v1'];
  8. $y = $_POST['v2'];
  9.  
  10. echo "Addition : ";
  11. echo $x+$y;
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement