<?php 

$tday=date("d");
	$tmonth=date("m");
	 $sql_birthday=mysql_query("SELECT employees.employee_number,employees.photo_file_name,employees.date_of_birth,employees.first_name,employees.middle_name,employees.last_name FROM employees WHERE  MONTH(date_of_birth)='".$tmonth."'   AND Day(date_of_birth)='".$tday."' 
");
	 
	 
	 $check_today_birthday=mysql_num_rows($sql_birthday);
	 ?>