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

9 lines
214 B
PHP
Raw Normal View History

2022-01-14 06:43:31 +00:00
<?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();