I have a variable holding values separated by a comma (Implode), and I\'m trying to get the total count of the values in that variable. However. count() is just returning 1.
Actually, its simpler than that:
$count = substr_count($schools, ',') + 1;