Advertisement
assowe

AM - lekcja 8 - php, pętle

Feb 17th, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5. </head>
  6.  
  7. <body>
  8.     <?php
  9.     for ($i=1; $i<=10; $i++)
  10.     {
  11.         echo "$i <br>";
  12.     }
  13.    
  14.     $i=1;
  15.     while ($i<=10)
  16.     {
  17.         echo "$i <br>";
  18.         $i++;
  19.     }
  20.     $i=1;
  21.     do
  22.     {
  23.         echo "$i <br>";
  24.         $i++;
  25.     }
  26.     while ($i<=10);
  27.     ?>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement