php do while loop code example

Example 1: for loop php

<?php
	$fruits = ["apple", "banana", "orange"];
	for($i=0;$i<count($fruits);$i++){
    echo "Index of ".$i."= ".$fruits[$i]."<br>";
    }
  ?>

Example 2: for loop in php

/*
For loop in php
*/

<?php
for ($i = 0; $i < 10; $i++) {
     echo $i."<br>";
} 
?>

Example 3: while loop php

<?php
	$a = 0;
	while($a<=5){
    	echo $a."<br>";
      $a++;
    }
  ?>

Example 4: php for loop

for($i = 0; $i <=10; $i++){
	echo "The index is $i";
}

Example 5: do while php

<?php
$i = 0;
do {
    echo $i;
} while ($i > 0);
?>

Example 6: while true php

while(true) {
 // Infinite Loop
}

Tags:

Php Example