| 
									
										
										
										
											2018-10-12 15:37:13 -04:00
										 |  |  | --- | 
					
						
							|  |  |  | title: While Loop | 
					
						
							|  |  |  | --- | 
					
						
							|  |  |  | ## While Loops
 | 
					
						
							|  |  |  | A `while` loop executes statements within the loop as long as the loops condition is met.  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### Syntax:
 | 
					
						
							|  |  |  | ```php | 
					
						
							| 
									
										
										
										
											2018-10-21 23:20:09 +07:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2018-10-12 15:37:13 -04:00
										 |  |  | $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>  |