This commit is contained in:
2026-05-13 21:17:36 +03:00
parent e43b94ba20
commit 3a6ab777c9
49 changed files with 9247 additions and 210 deletions

17
core/ignition.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
ini_set('session.cookie_httponly', 1);
ini_set('session.cookie_secure', 1); // Only if using HTTPS
session_start();
require_once 'config.php';
require_once 'functions.php';
spl_autoload_register(function ($className) {
$file = APP . 'core/classes/' . $className . '.php';
if (file_exists($file)) {
include $file;
}
});