Here is the sort of array I have for instance:
Array (
[0] => Array ( [id] => 21 )
[1] => Array ( [id] => 24 )
)
and I simply want to have
Array(21,24)
How can I do it ?
Here is the sort of array I have for instance:
Array (
[0] => Array ( [id] => 21 )
[1] => Array ( [id] => 24 )
)
and I simply want to have
Array(21,24)
How can I do it ?