HI all been trying to find solution for this array but I am not sure what is the term to use for this
I have this
$arraylist =
Array ([0] => Array ([ID] => 123
[No] => 5
[CLASS] => B)
[1] => Array ([ID] => 456
[No] => 6
[CLASS] => B)
)
echo $arraylist[0]['ID'] gets 123
How can I get ID instead of its value
1 Answer