The while loop


SUBMITTED BY: henry1874w

DATE: June 12, 2017, 4:12 p.m.

FORMAT: Text only

SIZE: 145 Bytes

HITS: 326

  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. $x = 1;
  6. while($x <= 5) {
  7. echo "The number is: $x <br>";
  8. $x++;
  9. }
  10. ?>
  11. </body>
  12. </html>

comments powered by Disqus