I have some problem to fetching key of matching value in array. Here is my array,
Array
(
[0] => Array
(
[0] => 1001;vbaker;[email protected];Vern;Baker;
)
[1] => Array
(
[0] => 1002;Tesdsd;[email protected];Test;vbaker;
)
[2] => Array
(
[0] => 1003;demosa;[email protected];Baker;Tesdsd;
)
)
So here for example, I want get key of 1002(value).. How do I get that ..?
My need is ,I have only the id(say 1002) so I have to get the other values like Tesdsd;[email protected];Test;vbaker;
1002, you want the result to be1?;) such that the expected result searching for "1002" would be[1][0][0]?