Hi there,
suppose I had the following complext aarray keys and values
$fDOM['form']['formname']['id']=9000;
$fDOM['form']= 'myForm';
$otherArr[1][3][0] = 9000;
$otherArr[1][3][1] = 7000;
I'm just kind of making these up but they represent some of the complexity I need to work with.
Now, here's the question -- in English-- that I want to ask in "php":
"Give me tne array name, and the key indices in order, of any array variable that has value of 9000."
What I want to get back is the following:
(fDOM, form, formname, id)
(otherArray, 1, 3, 0)
Is there ANY way to do this at all using PHP? Certainly someone has thought of this!
Thanks in advance.
Sam Fullman
Compass Point Media.