Skip to content

Instantly share code, notes, and snippets.

@luisinder
Created May 3, 2014 08:37
Show Gist options
  • Save luisinder/d7182cc4158ccdd77fdc to your computer and use it in GitHub Desktop.
Save luisinder/d7182cc4158ccdd77fdc to your computer and use it in GitHub Desktop.
PHP: Foreach (array of arrays)
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