<?
$string = "The quick. Brown. Fox jumped. Over the yellow. Cat.";
$results = explode(".",$string);
echo count($results)-1;
?>
using the explode to cut up the string into seperate 'sentances' this also could set you up for better string manipulation down the road.
-Jon