projet_php/index.php
2026-02-28 15:57:54 +01:00

31 lines
No EOL
758 B
PHP

<?php
session_start();
require(__DIR__ . "/vendor/autoload.php");
// Environnement
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->safeLoad();
$strCtrl = $_GET['ctrl'] ?? 'project';
$strMethod = $_GET['action'] ?? 'home';
$strClassName = "Controllers\\" . ucfirst($strCtrl) . "Ctrl";
$boolError = false;
if (class_exists($strClassName)) {
$objController = new $strClassName();
if (method_exists($objController, $strMethod)) {
$objController->$strMethod();
} else {
$boolError = true;
}
} else {
$boolError = true;
}
if ($boolError) {
header("Location: index.php?ctrl=error&action=error_404");
exit;
}