aboutsummaryrefslogtreecommitdiff
path: root/views/meta.php
blob: 9a50aa8d3befaca9a64a2f934bbb564326ec9232 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

include_once "../header.php";

function end_page() {
    include_once "../footer.php";
}

include_once "../../models/database.php";
foreach (glob("../../models/*.php") as $filename) {
    include_once $filename;
}

function runController(string $name) {
    include_once "../../controllers/$name.php";
    include_once '../../controllers/meta.php';
}