I have the following array...generated from this code.
$aa = new_Arr();
print_r($aa); //here is the result...
cl_aa Object
(
[data:cl_aa:private] => Array
(
[t_a] => Array
(
[0] => Array
(
[f_c] => LAL
[p_r] => RN
[id] => 1214125
[gender] => m
)
)
[t_b] => Array
(
)
[t_l] => Array
(
[0] => Array
(
[p_lev] => 2
[p_date] =>
[p_r] =>
)
)
[t_r] => Array
(
[0] => Array
(
[I_r] => 19
)
)
)
[db:cl_aa:private] => PDOTester Object
(
)
)
I try to read it as like this...
foreach ($aa as $key=>$value) {
print_r($key);
echo "<h1>". $value['bb']. "</h1>";
}
but no result i can see...
how do I read the above array? Help please?