![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/www/ondjoweb/admin/ |
<?php session_start(); require_once('includes/config.php'); error_reporting(0); $getProfile = $_SESSION['profile']; $getStaff = $_SESSION['staff']; if ($getProfile == "administrador"){ require_once "includes/admin-dashboard.php"; } if ($getProfile == "editor"){ require_once "includes/editor-dashboard.php"; } if ($getProfile == "redator"){ require_once "includes/redator-dashboard.php"; } if ($getProfile == "colaborador"){ require_once "includes/colab-dashboard.php"; } if ($getProfile == "clube"){ require_once "includes/clube-dashboard.php"; } ?>