First git commit

This commit is contained in:
root
2026-09-08 18:21:10 +01:00
commit 66911dc450
65 changed files with 7012 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
// Single include for every page.
require_once __DIR__ . '/config.php';
require_once __DIR__ . '/db.php';
require_once __DIR__ . '/auth.php';
require_once __DIR__ . '/ui.php';
require_once __DIR__ . '/mud.php';
session_boot();
db(); // ensure schema exists
// WAP gateways cache aggressively; force revalidation.
header('Cache-Control: no-cache, no-store, must-revalidate');
header('Pragma: no-cache');