Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.43 KB | None | 0 0
  1. !DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5. </head>
  6. <body>
  7. <form>
  8.     Please Total Additional Units: <input type="text" name="num1"/>
  9.     <input type="submit"/>
  10. </form>
  11. <?php
  12. if (isset($_GET['num1'])) {
  13.    $num1 = intval($_GET['num1']);
  14.  
  15.    echo "Total Cost in Rials = ";
  16.    echo ($num1 * 50)+150;//calculating based on additional blocks. considering 1 block cost as 50 rials
  17. }
  18.  
  19. ?>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement