Fonctionnalité sur addedit_project essentiellement

This commit is contained in:
GuillaumeH-Cci 2026-02-20 16:40:57 +01:00
parent e6c64912c3
commit d5609324ab
175 changed files with 8333 additions and 12477 deletions

View file

@ -2,9 +2,12 @@
session_start();
require("./vendor/autoload.php");
$dotenv = Dotenv\Dotenv::createImmutable(__DIR__);
$dotenv->safeLoad();
$strCtrl = $_GET['ctrl']??'project';
$strMethod = $_GET['action']??'home';
$intId = $_GET['id']??null;
$boolError = false;
$strFileName = "./controllers/".$strCtrl."_controller.php";