multi-dimensional arrays in php making my brain hurt
i dont do php often and when i do it's by cobbling together samples from all over using a generic knowledge of scripting and reading the manual. this is beyond cobbling. a 3 dimensional (i think) array with 2 normal ones and an associative one.
all i want is the name fields outputted to a webpage. simple really but I'm a bit lost here. extreme brain strain :(
the print_r gives this
Code:
Array
(
[words] => Array
(
[2009-07-03] => Array
(
[0] => Array
(
[query] => "Sarah"
[name] => Sarah
)
[1] => Array
(
[query] => "michael"
[name] => michael
)
[2] => Array
(
[query] => Alaska
[name] => Alaska
)
)
)
[as_of] => 1246663258
)
help!!
thx