<?php

require_once "/conf/PDO.php";
require_once "/conf/Mapper.php";

$mapper = new Mapper($DBH);
$timers = $mapper->getTimers();

include "templates/header.html"; ?>

<p><?php count($timers); ?></p>

<?php include "templates/footer.html"; ?>