i have this Code in my first PHP File
session_start();
print_r($_SESSION);
echo 'Session-ID: '.session_id();
And the Same on a second PHP File. Its same Domain.
In the First file, i can see some Session Informations from Login with CodeIgniter. Here the Result:
Array ( [__ci_last_regenerate] => 1508770297 [username] => [email protected] [role] => 1 [name] => [email protected] [id] => 1 [login] => 1 ) Session-ID: f9fn1bi0ioucr57d2j050elnca8i0veg
On the second file, this is the result
Array ( ) Session-ID: f9fn1bi0ioucr57d2j050elnca8i0veg
Its the Same Session-ID but i cannot get the username on second file :(
wwwdifferent in the domain :D