HOw do you combine two foreach loops into one.
- by Kirk
The language is PHP. I have one foreach ( $a as $b) and another foreach ($c as $d = $e). How do i combine them to read as one. I tired foreach (($a as $b) && ($c as $d = $e)), but that is rubbish.