Control structures:
*goto
*while
*for
*if
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.