Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
foreach ($timespent as $value) {
$dbhrs[] = intval(substr($value,0,2));
$dbmins[] = intval(substr($value,3)); }
$dbhr = array_sum($dbhrs);
$dbmin = array_sum($dbmins);
$time = $dbhr + floor($dbmin/60) .':'. ($dbmin % 60);
echo $time;