';
echo 'Been here for: ' . number_format( $timeres[1] ) . ' hours
';
echo 'Been here for: ' . number_format( $timeres[2] ) . ' minutes
';
echo 'Been here for: ' . number_format( $timeres[3] ) . ' seconds
';
function calculatetime( $time, $units )
{
$time = time() - $time;
$timeres[0] = round( $time / 86400 );
$timeres[1] = round( $time / 3600 );
$timeres[2] = round( $time / 60 );
$timeres[3] = $time;
return $timeres;
}
?>