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/app/common.php
2022-01-14 07:43:31 +01:00

9 lines
214 B
PHP

<?php
// This is the main file to be included on every page
session_start();
spl_autoload_register(function ($class_name) {
require(__DIR__ . '/class/' . $class_name . '.php');
});
$template = new Template();