Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>Leap Years</title>
- </head>
- <body>
- <?php
- for ($leap = 2004; $leap < 2050; $leap = $leap + 4) {
- echo "<p>$leap</p>";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement