Advertisement
humpda

PHP_Activity1

Mar 14th, 2022
1,133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>PHP Activity 1</title>
  4. </head>
  5. <body>
  6. <h1>Test Page</h1>
  7. This page prints the numbers 1 to 20 below, with 10 numbers per line and a comma in between each number (and no comma at the end):<br><br>
  8. <?php
  9. for ($i = 1; $i <= 20; $i++) {
  10.     print("$i");
  11.     if ($i != 20) {
  12.         print(", ");
  13.     }
  14.     if ($i == 10) {
  15.         print("<br>\n");
  16.     }
  17. }
  18. ?>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement