11 lines
272 B
PHP
11 lines
272 B
PHP
<?php
|
|
// Initializes environment variables and other stuff.
|
|
// if (!isset($_SESSION['initialized']))
|
|
require_once 'functions/init.php';
|
|
require_once 'functions/functions.php';
|
|
include_once 'components/head.php';
|
|
|
|
echo '<h1>Home</h1>';
|
|
|
|
include_once 'components/foot.php';
|