Multiple index variables in PHP foreach loop Multiple index variables in PHP foreach loop php php

Multiple index variables in PHP foreach loop


to achieve just that result you could do

foreach (array_combine($courses, $sections) as $course => $section)

but that only works for two arrays


If both the arrays are of the same size you can use a for loop as:

for($i=0, $count = count($courses);$i<$count;$i++) { $course  = $courses[$i]; $section = $sections[$i];}


TRY -

1)

<?php$FirstArray = array('a', 'b', 'c', 'd');$SecondArray = array('1', '2', '3', '4');foreach($FirstArray as $index => $value) {    echo $FirstArray[$index].$SecondArray[$index];    echo "<br/>";}?>

or 2)

<?php$FirstArray = array('a', 'b', 'c', 'd');$SecondArray = array('1', '2', '3', '4');for ($index = 0 ; $index < count($FirstArray); $index ++) {  echo $FirstArray[$index] . $SecondArray[$index];  echo "<br/>";}?>