Clem
Clem

Reputation: 11824

php session lost after header() redirect

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

Answers (2)

DescX
DescX

Reputation: 334

You have to add session_start(); at the top of your PHP script(s).

Upvotes: 1

Goran Rakic
Goran Rakic

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

Related Questions