It's not the best way, but something like this:
$Today = date("d-m");
$result = mysql_query("SELECT name,date FROM (Table) WHERE date LIKE '$Today%'");
$count = @mysql_numrows($result);
for($i=0;$i<$count;$i++){
echo mysql_result($result,"$i","name");
}