ok, i have done session multimple times, mainly on linux. I just setup a new test server on my laptop, apache 2.0.54 and php 5.04. i am having problems with my session cookies getting lost, or mixed up, or something.
when i register a session variable, i can see it on my browser and in the tmp directory on the server. But when i try to access that variable on a differnt page, its gone, and php just starts a new session cookie!
here is a test script that isnt working for me... i could use some idea's here!
page 1
<?
session_name($_SERVER['REMOTE_ADDR']);
session_start();
$_SESSION['test'] = 'test';
print $_SESSION['test'];
?>
<a href="test2.php">click here</a>
page2
<?
session_name($_SERVER['REMOTE_ADDR']);
session_start();
//$_SESSION['test'] = 'test';
print $_SESSION['test'];
?>
thanks for any help