Ben aşağıdaki kodu yazarsak:
session_start();
$_SESSION['user_id']='daniel';
the variable stays fine as long as I'm on the page on which it was created, and the second I try to call $_SESSION['user_id']
from another page, I don't get a response.
Can anyone tell me what mistake I'm making?