Help for this page

Select Code to Download


  1. or download this
    $today = timelocal(localtime);
    my $lastaction = &date_to_unix($datestamp);
    ...
    }
    
    $duration = ($today - $lastaction)/3600;
    
  2. or download this
    $durationTemp = ($today - $lastaction) / 3600;
    $duration=sprintf("%d",$durationTemp);