I have read through the php manual for this problem and it seems quite a common issue but i have yet to find a solution. I am saving sessions in a database. My code is as follows:
// session
$_SESSION['userID'] = $user->id;
header('Location: /subdirectory/index.php');
Then at the top of index.php after the session_start()
, i have var_dumped the $_SESSION global and the userID is not in there. As i said ive looked through the PHP manual (http://php.net/manual/en/function.session-write-close.php
) and neither session_write_close
or session_regenerate_id(true)
worked for me.
Does anybody know a solution?
Düzenleme: Ben dosyanın üstündeki () session_start var. I başlık yönlendirmenin önce küresel oturumu var_dump zaman, ben orada kullanıcı kimliği görmek değil, bu komut bir alt olan diğer dosyasında
Thanks, Matt