Advertisement
YavorGrancharov

Multiply a Number by 2

Dec 2nd, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>First Steps Into PHP</title>
  6.  
  7. </head>
  8. <body>
  9. <?php
  10.     if (isset($_GET['num'])) {
  11.         $n = intval($_GET['num']);
  12.         $n = $n * 2;
  13.     }
  14. ?>
  15. <form>
  16.     N: <input type="text" name="num" value="<?php echo$n?>"/>
  17.     <input type="submit" />
  18. </form>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement