dysphafiz_

Untitled

Oct 29th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Nested Looping</title>
  5.     <style type="text/css">
  6.         body{
  7.             background-color: midnightblue;
  8.             font-size: 24px;
  9.             color: skyblue;
  10.         }
  11.     </style>
  12. </head>
  13. <body>
  14.     <?php
  15.         $jumlah = 5;
  16.         for ($i=1; $i <= $jumlah ; $i++) {
  17.             for ($j=1; $j <= $i ; $j++) {
  18.                 echo 'x';
  19.             }
  20.             echo '<br>';
  21.         }
  22.     ?>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment