$a
=
array
(
'fruits'
=>
array
(
'a'
=>
'orange'
,
'b'
=>
'grape'
,c=>
'apple'
),
'numbers'
=>
array
(1,2,3,4,5,6),
'holes'
=>
array
(
'first'
,5=>
'second'
,
'third'
)
);
foreach
(
$a
as
$list
=>
$things
){
if
(
is_array
(
$things
)){
foreach
(
$things
as
$newlist
=>
$counter
){
echo
"key:"
.
$newlist
.
"<br/>"
.
"value:"
.
$counter
.
"<br/>"
;
}
}
}