I have the following array:
Array
(
[0] => Array
(
[country_id] => 1
)
[1] => Array
(
[country_id] => 2
)
[2] => Array
(
[country_id] => 3
)
)
I want to basically check if a value is in this array. So if country_id = 1, then it's true, etc.
any help would be awesome!