php function to calculate age from date of birth <?php function get_age($birth_date){ return floor((time() - strtotime($birth_date))/31556926); } echo " I am ".get_age("2000-05-10") ." years old"; ?> Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment