Answers for "php for next loop"

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
0

php for next loop step

for ($i = 0; $i < 10; ++$i) 
{
  echo "I will loop 10 times";
}
Posted by: Guest on August-06-2020

Browse Popular Code Answers by Language