There is a file user.php where I work with the $ _SESSION variable. It is connected to index.php but the variable is not defined anywhere except user.php . What should be done so that the variable and its indices are visible in any of the three files?
<?php //index.php include "cfg.php"; //Тут лежит функция session_start(); include "user.php"; //Операции с $_SESSION ?>