diff --git a/index.php b/index.php index 23e8b73..c935118 100644 --- a/index.php +++ b/index.php @@ -8,9 +8,13 @@ $now = new DateTime(); $zero = new DateTime('1442-01-01'); $diff = $now->diff($zero); echo $diff->format('%a days'); // days since day zero +echo "
"; //separator $year = date("Y") - 579; -echo "Year " . $year; +$month = date("M") - 6; +$day = date("d") - 12; +// test sample date +echo "Year " . $year . "Month " . $month . "Day " . $day . "
"; ?> Placeholder.