Lesson 23 of 3077%
(Progress persistence is disabled until Phase 9)
PHP
Beginner
For
Learn about For in PHP.
PHP is a powerful server-side language. In this lesson, we will cover For.
Real code examples
<?php
for ($x = 0; $x <= 10; $x++) {
echo "The number is: $x \n";
}
?>
Common mistakes
Make sure you include the <?php tag when writing PHP!
Try It Yourself
You can experiment with this in the Playground.