__DIR__ . '/../cache', 'auto_reload' => true, ]); $pdo = (new App\DB($options))->pdo; /* Get records with limit */ $STH = $pdo->query ("SELECT `host`, `base64`, `base32`, `add_date`, `last_seen` FROM `hosts` WHERE `disabled` = 0 ORDER BY `add_date` DESC LIMIT " . $options["tableitems"]); $STH->setFetchMode(PDO::FETCH_ASSOC); $rows = $STH->fetchAll(); $template = $twig->load('latest.twig'); echo $template->render(['limit' => $options["tableitems"], 'hosts' => $rows]);