Advertisement
dysphafiz_

Untitled

Oct 29th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Bentuk Umum While</title>
  5.     <style type="text/css">
  6.         body{
  7.             background-color: silver;
  8.             color: #3498db;
  9.             text-align: center;
  10.             font-family: consolas;
  11.             font-size: 20px;
  12.         }
  13.     </style>
  14. </head>
  15. <body>
  16. <?php
  17.     $i=1;
  18.     while ($i <= 20) {
  19.         echo "halo mantanku yang ke - $i";
  20.         echo "<br>";
  21.         $i++;
  22.     }
  23. ?>
  24. </body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement