how to calculate age 60 from date of birth in php and mysql code example
Example: php get age from dob
Simple method for calculating Age from dob: $_age = floor((time() - strtotime('1986-09-16')) / 31556926); 31556926 is the number of seconds in a year.