Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Nested Looping</title>
- <style type="text/css">
- body{
- background-color: midnightblue;
- font-size: 24px;
- color: skyblue;
- }
- </style>
- </head>
- <body>
- <?php
- $jumlah = 5;
- for ($i=1; $i <= $jumlah ; $i++) {
- for ($j=1; $j <= $i ; $j++) {
- echo 'x';
- }
- echo '<br>';
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment