Template:Age in days

Agros urbe non clamaten
Revision as of 23:48, 22 November 2024 by FluidicYottabyte (talk | contribs) (Created page with "<?php $now = time(); // or your date as well $your_date = strtotime("2010-01-01"); $datediff = $now - $your_date; echo floor($datediff/(60*60*24)); ?>")

<?php

    $now = time(); // or your date as well
    $your_date = strtotime("2010-01-01");
    $datediff = $now - $your_date;
    echo floor($datediff/(60*60*24));

?>