I have a php
array that looks like this...
(
[name] => Tester
[colors] => Array
(
[blue] => Array
(
[count] => 1
[status] => hold
)
)
)
I am trying to get the first array from colors
but have not been able to. I have tried...
echo $array['colors'][0];
echo $array->colors[0];
Neither of which have given me any results. Where am I going wrong?