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/index.php

17 lines
331 B
PHP
Raw Normal View History

2022-01-14 06:43:31 +00:00
<?php
2022-01-15 10:26:02 +00:00
require("../app/inc.php");
2022-01-14 06:43:31 +00:00
2022-01-15 10:26:02 +00:00
// Instantiate a new controller
$contr = new Controller;
2022-01-14 06:43:31 +00:00
2022-01-15 10:26:02 +00:00
// Grab the model
$model = $contr->model('Index');
2022-01-14 06:43:31 +00:00
2022-01-15 10:26:02 +00:00
// Perform database task with model
$username = $model->getUsername();
// Display view with retrieved data
$contr->view('index', [
2022-01-16 16:12:04 +00:00
"title" => "Forside",
2022-01-15 10:26:02 +00:00
"data" => $username
]);