While
A loop designed for looping though code while a condition is true instead of a known amount of times. Be careful with this loop, it is easy to make it endless.
Examples:
PHP Code:
while($condition == true)
{
//do stuff here
}
Note
The condition does not have to be literally true, it will loop on whatever the condition is in the parameters.