30 Nov 2013
Calculate Age out of Date Of Birth
Generally we store date of birth in our database and in front end we have to display age also. In php we can use following code to calculate AGE out of date of birth.
$dateofbirth = “12/08/1984”;
echo floor((time() – strtotime($dateofbirth))/31556926);
echo floor((time() – strtotime($dateofbirth))/31556926);
Any question please write in comments.