Advertisement
Militsa

14. HTML Buttons

Jan 3rd, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 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. <form>
  10.     N: <input type="text" name="num" />
  11.     <input type="submit" />
  12. </form>
  13. <!--Write your PHP Script here-->
  14. <?php
  15. if(isset($_GET['num'])) {
  16.     $num = intval($_GET['num']);
  17.     for($i = 1; $i <= $num; $i++) {
  18.         echo "<button>$i</button>\n";
  19.     }
  20. }
  21. ?>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement