Initial commit

This commit is contained in:
Porawit Dongwang
2026-09-16 23:20:08 +07:00
commit 0041668dbb
32577 changed files with 3687927 additions and 0 deletions
@@ -0,0 +1,18 @@
<?php
// Start session
session_start();
// Require configuration
require_once '../config/config.php';
// Autoload Core Classes
spl_autoload_register(function($className) {
// Map namespace to directory
$path = '../' . str_replace('\\', '/', $className) . '.php';
if(file_exists($path)) {
require_once $path;
}
});
// Initialize the core App
$app = new \app\Core\App();