http://php.flashwebhost.com/sherly/age.php

Code:
<?php

$name = 'Joseph';
$yearBorn = 1975;
$currentYear = 2014;
$age = $currentYear - $yearBorn;

print ("$name is $age years old. ")