I have an array like this:
$tmb = Array(
[xThis] => 12400
[fThat] => 7
[cMore] => Array(
[236] => Array(
[acting_person] => "Test info"
[tThings] => "history"
)
)
)
)
I know how to call xThis(like $tmb['xThis'] but how do I call [acting_person] in a statement like this?
$new = $tmb['xThis'] . $tmb['fThat'] . ??????????????????
Sorry If this is elementary I am really new to PHP. Thanks.