diff --git a/index.php b/index.php index 432374f..da868a2 100644 --- a/index.php +++ b/index.php @@ -4,7 +4,13 @@ * Vincent Verdon - 20240604 */ - + + //Loads some functions for session managment and starts the session + require('controllers/auth_utilities.php'); + session_start(); + //var_dump($_SESSION); + + //The requested route $route = null; if (isset($_GET['route'])) { diff --git a/index.php~ b/index.php~ index da868a2..432374f 100644 --- a/index.php~ +++ b/index.php~ @@ -4,13 +4,7 @@ * Vincent Verdon - 20240604 */ - - //Loads some functions for session managment and starts the session - require('controllers/auth_utilities.php'); - session_start(); - //var_dump($_SESSION); - - + //The requested route $route = null; if (isset($_GET['route'])) {