while loop iterates through a block of code as long as a specified condition is true.
while
$i = 1; while ($i < 10) { echo $i; $i++; }
Output: 123456789
123456789
For detailed information, see the Loops topic.