Created
May 3, 2014 08:37
-
-
Save luisinder/d7182cc4158ccdd77fdc to your computer and use it in GitHub Desktop.
PHP: Foreach (array of arrays)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
foreach($resultArray as $row => $innerArray){ | |
foreach($innerArray as $innerRow => $value){ | |
echo $value . "<br/>"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment