array(
"bullony" => "one",
"mcwhat" => "two",
"daniweb" => "yay"
)
How to use this data to say for examplebullony has variable one
ormcwhat has variable two
ordaniweb has variable yay
.
How do I get name of array listed?
I know I could use print_p();
but it displays all.
I need only name of first two arrays. So bullony
and mcwhat
.