I am trying to output an array as an html table, a sample of the array is..
Array
(
[18] => Array
(
[colour] => red
[size] => large
[age] => 220
)
[19] => Array
(
[colour] => yellow
[size] => small
[age] => 20
)
[12] => Array
(
[colour] => brown
[size] => large
[age] => 2
)
)
I am ok with doing a foreach for a simple array but does anyone have an example showing this being converted into a table for this type of array?