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
2022-01-15 11:26:02 +01:00

16 lines
305 B
PHP

<?php
require("../app/inc.php");
// Instantiate a new controller
$contr = new Controller;
// Grab the model
$model = $contr->model('Index');
// Perform database task with model
$username = $model->getUsername();
// Display view with retrieved data
$contr->view('index', [
"data" => $username
]);