Learn Before
Concept
The PHP while Loop
While the provided condition is true, the while loop runs a block of code.
<?php while (condition is true) { code to be executed; } ?>
0
1
Updated 2023-02-01
Tags
Object-Oriented Programming (OOP) Languages
The PHP while Loop
While the provided condition is true, the while loop runs a block of code.
<?php while (condition is true) { code to be executed; } ?>
0
1
Tags
Object-Oriented Programming (OOP) Languages