$row = mysql_fetch_array($results)
$outofdate = (strtotime($row['date']) < strtotime(date('Y-m-d'))) ? 'Out of Date' : $row['date'];
Of course your date column needs to be in some kind of a standard formatting.
Of course if you were storing the date as a time stamp it would get even easier.