Re: [PHP] getting numeric index of array

2001-03-25 Thread CC Zona
In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Christian Dechery) wrote: > $myArray = array( > "one" => "something", > "two" => "otherthing", > "three" => "whatever" > ); > > I want to, given the key (or value),

[PHP] getting numeric index of array

2001-03-25 Thread Christian Dechery
I wanna get the numeric index for a multi-dimensional associative array... I have like $myArray = array( "one" => "something", "two" => "otherthing", "three" => "whatever" ); I want to, given the key (or val