I have a multi-dimensional array that I need to loop through and create <td></td> for each value of the inner array. Can someone show me how to do it? Thanks. Here is the array:
Array
(
[Nov 18, 2011] => Array
(
[0] => C
[1] => I
[2] => S
)
[Nov 22, 2011] => Array
(
[0] => C
[1] => S
)
)
I need to retrieve the C, I, and S values. Thank you.