Session is not working
by piyushpatelia from LinuxQuestions.org on (#5EHEB)
Hi,
While i am trying to fetch session in next page, i couldn't get it.
Here is the code:
Page 1:
ob_start();session_start();
$_SESSION['favcolor'] = 'green';
$_SESSION['animal'] = 'cat';
$_SESSION['time'] = time();
echo '<br /><a href="bbb.php?' . SID . '">page 2</a>';
Page 2:
ob_start();session_start();
echo $_SESSION['favcolor']; // green
echo $_SESSION['animal']; // cat
it's display null value. also two session files generated in session.path folder.


While i am trying to fetch session in next page, i couldn't get it.
Here is the code:
Page 1:
ob_start();session_start();
$_SESSION['favcolor'] = 'green';
$_SESSION['animal'] = 'cat';
$_SESSION['time'] = time();
echo '<br /><a href="bbb.php?' . SID . '">page 2</a>';
Page 2:
ob_start();session_start();
echo $_SESSION['favcolor']; // green
echo $_SESSION['animal']; // cat
it's display null value. also two session files generated in session.path folder.