I have an array of array like this
$data=array(
array("9900","1","7"),
array("9901","1","7"),
array("9902","1","7"),
array("9903","1","4"),
array("9904","3","8"),
array("9908","1","5")
);
I have value 9908
. When I search 9908 then the value array("9908","1","5")
should be printed. I have used array_search()
but I have not got any success
How I can print the array after finding the value