3 elements in do while loop php

PHP
while(true) {
 // Infinite Loop
}for($i = 0; $i <=10; $i++){
	echo "The index is $i";
}
Source

Also in PHP: