How to make an array.I have array like this
Array
(
[0] => Array
(
[id_facility_master] => 2
)
[1] => Array
(
[id_facility_master] => 3
)
[2] => Array
(
[id_facility_master] => 6
))
It's returned from codeigniter active record so i want change format by the array values like this
$arr = array(2,3,6);