";
    for ($i = 0; $i < count($runners); $i++) {
        $runner = $runners[$i];
        if ($runner->get_control() == $control){
            $time_since_punch = time() - ($runner->splits[$control])->getTimestamp();
            //Løperen har ikke venta 4 minutt:
            if ($time_since_punch < $time_limit) {
                $time = format($time_limit - $time_since_punch);
                $waiting .= "
$runner->id $runner->name -$time
";
            } elseif ($time_since_punch >= $time_limit && $time_since_punch <900){ //Løperen har venta ferdig 
                $time = format(time()-$runner->splits[$control]->getTimestamp() - $time_limit) ;
                $finished .= "
$runner->id $runner->name +$time
";
            }
            
            
        }
    }
    echo($waiting . "
 ". $finished . "