for loop php
<?php
$fruits = ["apple", "banana", "orange"];
for($i=0;$i<count($fruits);$i++){
echo "Index of ".$i."= ".$fruits[$i]."<br>";
}
?>
for loop php
<?php
$fruits = ["apple", "banana", "orange"];
for($i=0;$i<count($fruits);$i++){
echo "Index of ".$i."= ".$fruits[$i]."<br>";
}
?>
How to write a loop in PHP
<?php
//FOR each item within the array, "ECHO" out the index ($i) and value of each item.
$numbersArray = [1, 2, 3]
for($i = 0; $i < count($numbersArray); $i++) {
echo "Index of ".$i."= ".$numbersArray[$i]."<br>";
}
?>
for loop in php
for($i = 0;$i < count($users);$i++) {
if($users[$i]['user_id']==3){
$userName = $users[$i]['first_name'];
}
}
php for loop
for($i = 1; $i > 10; $i++){
//show i value
echo "Your Number Is :$i";
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us