I have the following array, i just need a way to select only arrays where mnth value is the same. eg all arrays where mnth value => 7.
Array
(
[0] => Array
(
[desc] => rates
[mnth] => 7
[cost] => 8978
)
[1] => Array
(
[desc] => insurance
[mnth] => 8
[cost] => 7680
)
[2] => Array
(
[desc] => water
[mnth] => 7
[cost] => 7800
)
)