Help for this page

Select Code to Download


  1. or download this
    $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