Reputation: 11824
This is first time i try to create a session. Also, after success login i redirect the page using header() function, but then on the redirected page i dont have session any more. There is the code:
creating session:
function userLogin($user){
session_start();
$_SESSION['username'] = $user;
header("Location: /~klemeno/vaja10?" . SID);
exit;
}
When browser redirect me i try to echo session like this:
if(isset($_SESSION['username'])){
echo $_SESSION['username'];
}
else{
echo "No session :(";
}
Upvotes: 3
Views: 15159
Reputation: 1799
You need to call session_start();
in both scripts to start and resume the session.
See: http://php.net/manual/en/function.session-start.php
Upvotes: 12