There is a simple way to find the date from any birthdate by using substr of PHP
$birth_date = '15.03.2014';
$date = substr($birth_date, 0, 2);
echo $date;
Which will just simply give you the output date of that birth date.
In this case, that will be 15.
See substr of PHP for more...