dowhile statement php 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: do while php
<?php
$i = 0;
do {
echo $i;
} while ($i > 0);
?>