The PHP while Loop
The
while
loop executes a block of code as long as the specified condition is true.
$x = 1;
while($x <= 100) {
    echo "The number is $x". "\n";
    $x+=10;
}
by Eka Suarishvili
2 years ago
PHP
0
Pro tip: use ```triple backticks around text``` to write in code fences