Another do...while loop


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 149 Bytes

HITS: 320

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

comments powered by Disqus