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