Answers for "dowhile statement php"

PHP
10

for loop php

<?php
	$fruits = ["apple", "banana", "orange"];
	for($i=0;$i<count($fruits);$i++){
    echo "Index of ".$i."= ".$fruits[$i]."<br>";
    }
  ?>
Posted by: Guest on December-28-2019
7

do while php

<?php
$i = 0;
do {
    echo $i;
} while ($i > 0);
?>
Posted by: Guest on April-01-2020

Browse Popular Code Answers by Language