Simple Age Calculator in PHP
This tutorial tackles on how to create a simple age calculator using PHP. Using HTML5's input date, the user will input its birthday, then the app will determine the age base on the inputted birthday. We are using date_diff() function which is an alias of DateTime::diff() as per manual's description.