This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/view-teams.php
2022-02-05 15:43:48 +01:00

9 lines
281 B
PHP

<?php
$app = require '../app/inc.php';
$sth = $app->database->conn->query('SELECT * FROM lagtabell');
$teams = $sth->fetchAll(PDO::FETCH_ASSOC);
$app->view('template/header', ['title' => 'Lagtabell']);
$app->view('view-teams', ["teams" => $teams]);
$app->view('template/footer');