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

9 lines
281 B
PHP
Raw Normal View History

2022-02-05 14:43:48 +00:00
<?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');