Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>PHP Activity 1</title>
- </head>
- <body>
- <h1>Test Page</h1>
- 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>
- <?php
- for ($i = 1; $i <= 20; $i++) {
- print("$i");
- if ($i != 20) {
- print(", ");
- }
- if ($i == 10) {
- print("<br>\n");
- }
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement