I have the following array:
Array ( [0] => Array ( [title] => Accommodation [description] =>Hotel [number] => 1 ) )
Is there a more efficient way of outputting the array values rather than using nested foreach loops:
Code: Select all
foreach(...)
{
foreach(...)
{
}
}