9 lines
281 B
PHP
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');
|