Advertisement
amoussa11

The PHP while Loop

Feb 16th, 2019
397
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <?php  
  6. $x = 1;
  7.  
  8. while($x <= 5) {
  9.   echo "The number is: $x <br>";
  10.   $x++;
  11. }
  12. ?>  
  13.  
  14. </body>
  15. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement