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 the value is in this array. So, if country_id = 1, then this is true, etc.
any help would be awesome!
source share