Primo Commit

This commit is contained in:
root
2026-01-03 11:59:31 +01:00
commit 719d750a7a
72 changed files with 14088 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?php
// Determina il percorso base dell'applicazione
$script_name = $_SERVER['SCRIPT_NAME'];
$script_path = dirname($script_name);
$base_path = rtrim($script_path, '/');
$base_url = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on' ? "https" : "http") . "://$_SERVER[HTTP_HOST]$base_path";