I have the following
Array
(
[1298650982] => Array
(
[genre] => Action
[date] => 90s
[rate] =>; 4
[title] => Braveheart
)
[1298651271] => Array
(
[genre] => Action
[date] => 90s
[rate] => 3
[title] => Top Gun
)
)
and am trying to build a hierarchical system where it would return something like this
- Action
- 90s
- Rate: 4
- Braveheart
- Rate :3
- Top Gun
basically combine the arrays where they have similar values. Thanks, Mike