Looping through an Enumerated Array : Array Loop « Data Structure « PHP






Looping through an Enumerated Array

 <?php
  $emp_det []= "A";
  $emp_det []= "B";
  $emp_det []= "C";
  $emp_det []= "D";
  $emp_det []= "E";
  $emp_det []= "F";
  foreach ($emp_det as $temp) {
    echo "$temp", "\n";
  }
?>

           
       








Related examples in the same category

1.Using foreach to Iterate through an Array
2.Looping Through a Compact Indexed Array Using for and count()
3.Looping Through a Multidimensional Array
4.Looping Through a Sparse Array
5.Looping Through an Associative Array with foreach
6.Looping Through the $_SERVER Array
7.Looping through child elements with foreach()
8.Looping through identically named elements with foreach()
9.Looping with foreach()
10.List array values