I see on my server that session files are being stored, but my variables won’t hold across pages. Any suggestions? I’m pretty new to this.
[php]
Page 1
session_start();
$test = ‘test’;
$_SESSION[‘user’] = $test;
Page 2
session_start();
$user = $_SESSION[‘user’];
echo $user;
[/php]