while

suggest change

while loop iterates through a block of code as long as a specified condition is true.

$i = 1;
while ($i < 10) {
    echo $i;
    $i++;
}

Output: 123456789

For detailed information, see the Loops topic.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents