This is a simple birthday reminders:
<h3>The current date:<?php echo date("m月d日");?></h3>
<?php
$a = array("zhangsan"=>"05月30日","lisi"=>"05月28日","wangwu"=>"05月29日");
foreach($a as $key => $value){
if(date("m月d日") == $value){
echo " 今天是".$key."的生日";
}
}
?>