Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Solo For Loop!</title>
- </head>
- <body>
- <p>
- <?php
- // Write your for loop below!
- for($i=10; $i < 101; $i = $i + 10){
- echo $i;
- }
- ?>
- </p>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement