I have this array:
Array ( [number] => 10)
Array ( [number] => 3)
Array ( [number] => 7)
Array ( [number] => 8)
And I want to break it into several chunks or variables
COUNT the number of values less than 5
COUNT the number of values more than 5
I know I can do this with mysql using the count function but I already have too much queries on the page and want to use php to do this. Any ideas? :queasy: