Unas lineas de código para poder sumar todos los tiempos totales:
/* TOTALES HORAS MINUTOS Y SEGUNDOS DE LA CONSULTA*/
$sh = "SELECT * FROM $vname WHERE `din` LIKE '$fil' AND `ttot` <> 'xxx' ORDER BY $orden ";
/* CALCULAMOS LAS HORAS TOTALES Y LAS PASAMOS A SEGUNDOS. */
if(!$sh){print(mysqli_error($db).".</br>");
}
else{
$qh = mysqli_query($db, $sh);
$qhr = mysqli_num_rows($qh);
$sumah = 0;
for($i=0; $i<$qhr; $i++){
$verh = mysqli_fetch_array($qh);
$verh = substr($verh['ttot'],0,2).",";
$verh = str_replace(":","",$verh);
global $sumah;
$sumah = $sumah + $verh;
}
}
$hortosec = $sumah * 3600;
//print ("</br>".$sumah);
//print ("</br>".$hortosec);