you are right,and you can tackle this problem in many ways.
If you want to use PHP native functions you can convert your times to timestamps and add ten minutes 600 seconds then convert them back to a readout time like hh:mm, or in
or you can build a custom function to handle the addition of 10 minutes at a time. by simply going
$current_time="0:0:0";
function sumtime()
{
global $current_time;
$exp=explode(":",$current_time);
list($Days,$Hours,$Minutes) = $exp;
$Minutes=$Minutes + 10;
if ($Minutes==60)
{
$Minutes=0;
$Hours = $Hours + 1;
}
if ($Hours == 24)
{
$Hours = 0;
$Days = $Days + 1;
}
$current_time=$Days.":".$Hours.":".$Minutes;
}
This was real quick, but something or the sort