get from array php code example
Example 1: php get all values from array
array_values(array)
Example 2: php take out 2 level array key value
foreach($bigArray as $array){
foreach($array as $key=>$value){
echo $key;
}
}
#If if helps you give it Thumbs up