um
$dates = array("2003-10-28", "2003-10-29", "2003-10-31");
$currentDay = 0;
for($i=0;$i<sizeof($dates);$i++) {
list($year, $month, $day) = explode("-", $dates[$i]);
if($currentDay == 0) {
$currentDay = $day;
}
$nextDay = $currentDay + 1;
$difference = $nextDay - $currentDay;
if($difference > 1) {
echo "Missing...";
}
}
actually this more then likely won't work, I was like writing with the intention and thought of how it would work, and after I started, my brain began to stop, and suddenly I couldn't finish it correctly, so maybe this could at least start you off... shrugs.