This is the array I want to extract from:
Array
(
[0] => Array
(
[id] => 11
[order_id] => 6127
)
[1] => Array
(
[id] => 12
[order_id] => 6123
)
)
This is what I need:
$results = array()
$results(6127, 6123)
There can be any number of arrays within the first array.