Files
html/generated/file_01.php
2026-04-12 22:57:03 +02:00

8 lines
219 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// 1. index.php point dentrée unique, route vers les modules
require_once 'config.php';
require_once 'kernel/Kernel.php';
session_start();
$kernel = new Kernel();
$kernel->handle($_SERVER['REQUEST_URI']);