I've got an array which when I var_dump looks like this:
array(2) { [0]=> array(1) { ["unit_id"]=> string(1) "1" } [1]=> array(1) { ["unit_id"]=> string(1) "3" } }
I need to extract each of those values (1, 3) to where I can put them in a SQL WHERE IN clause
So far I've found the php implode function but I do not know how to do that on a multidimensional array.
Please help :(