Abraham
0
Q:

php loop

for ($x = 0; $x <= 10; $x++) {
    echo "The number is: $x <br>";
}
10

<?php 
for ($x = 0; $x <= 10; $x++)
{

   echo "The number is: $x <br>";
} 
?>  
13
<?php
	$fruits = ["apple", "banana", "orange"];
	for($i=0;$i<count($fruits);$i++){
    echo "Index of ".$i."= ".$fruits[$i]."<br>";
    }
  ?>
10
for ($x = 0; $x <= 10; $x++) {
     echo "The number is: $x <br>";
} 
10
/*
For loop in php
*/

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

for (init counter; test counter; increment counter)
{

  code to be executed 
  for each iteration;

}
2
#Loops

<?php
    #loops execute code a set number of times
    /*
    Types of loops
    1-For
    2-While
    3-Do..while
    4 Foreach
    */

    # For Loop usually use if you know the number of times it has to execute
    # @params -it takes an init, condition, increment
    #for($i =0;$i<=11;$i++){
    #echo 'Number: '.$i;
    #echo '<br>';
    #}
    #While loop
    # @ prams - condition
    #$i = 0;
    #while($i < 10){
    #    echo $i;
    #    echo '<br>';
    #    $i++;
    #}
    # Do...while loops
    #@prapms - condition
    /*$i = 0;
    do{
        echo $i;
        echo '<br>';
        $i++;
        }
        while($i < 10);*/
    # Foreach  --- is for arrays
    
    # $people = array('Brad', 'Jose', 'William');
    #     foreach($people as $person){
    #     echo $person;
    #     echo '<br>';
    # }
    $people = array('Tony' => '[email protected]',
        'Jose' => '[email protected]','William' => '[email protected]');
    
     foreach($people as $person => $email){
        echo $person.': '.$email;
        echo '<br>';
}
?>
0
do
{
    code to be executed
}
while (condition)
0

New to Communities?

Join the community