The for loop


SUBMITTED BY: henry1874w

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

FORMAT: Text only

SIZE: 137 Bytes

HITS: 346

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

comments powered by Disqus