fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,19 @@
---
title: While Loop
---
## While Loops
A `while` loop executes statements within the loop as long as the loops condition is met.
### Syntax:
```php
$x = 0;
while ($x < 11) {
statement1;
$x++;
}
```
**Note:** The block code must have a statement that changes or increments the condition. Otherwise an infinite loop could result.
### More Information:
<a href='http://php.net/manual/en/control-structures.while.php' target='_blank' rel='nofollow'>PHP While Loop</a>