-this is the content of test1.php:
<? session_start(); ?>
<p>Session ID = <?=session_id();?>. Click to next file <a href="test2.php">Next</a></p>
- and this is the content of test2.php:
<? session_start(); ?>
<p>Session ID = <?=session_id();?>. Click get back to previous file <a href="test1.php">Back</a></p>
So... Each time i got another session id from same file: first time i got a session id into test1.php and after i have clicked on "Next" and i come back from test2.php, I found different session id. That what i don't get it. I have session tracing in files. For each request toward apache, php was creating a session file.
Thanks!