3

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 :(";
}
Clem
  • 11,334
  • 8
  • 34
  • 48

2 Answers2

12

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

Goran Rakic
  • 1,789
  • 15
  • 26
1

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

DescX
  • 334
  • 1
  • 5
  • 19