fixed country client and parts column matrice

This commit is contained in:
2025-10-27 14:38:20 +01:00
parent 29e4b41874
commit 218fc14462
4 changed files with 127 additions and 80 deletions
@@ -13,13 +13,13 @@ if (session_status() == PHP_SESSION_NONE) {
}
// Imposta variabili di sessione di default per evitare errori
$_SESSION['iduserlogin'] = null; // Nessun utente loggato
$_SESSION['iduserlogin'] = '1'; // Nessun utente loggato
$_SESSION['nameuser'] = 'Ospite';
$_SESSION['surnameuser'] = '';
$_SESSION['emailuser'] = '';
$_SESSION['photouser'] = '';
$photouser = $_SESSION['photouser'];
$photousername = '';
$iduserlogin = $_SESSION['iduserlogin'];
// Include file di lingua, se necessario
require_once(__DIR__ . '/../../languages/en/general.php');