well, maybe not "bad, very bad" but at least inconvienent...
you could recover the date from the DB then explode it into a list:
list ($month, $date, $year)=explode("/", $row['date']);
$current_date=date("d");
$current_month=date("m");
if (($month == $current_month) AND ($date==$current_date)) then {
// display name or whatever //
}
I haven't checked the code, use at your own risk.