Help for this page
$days = int($time/86400); $time %= 86400; # leave only the part that's less than a d +ay $hours = int($time/3600); $time %= 3600; # leave only the part that's less than an +hour; ... # and so on