why does this not work?
I added a little zip-file with 5 very small scripts :
testsession.htm : define a frameset
frame1.htm : frame 1 --> starts start.php on myserver (change adrdress of myserver into address of any server, that supports php)
frame2.htm : frame 2 --> empty script
start.php : starts a session and shows the session_id, then it
starts continue.php and passes the session_id to it
continue.php : when started, starts a session and shows the session_id
start.php and continue.php should be uploaded to a server, that supports php.
Then run testsession.htm on your machine and see, that the session_id of start.php and continue.php are different.
Then run frame1.htm on your machine and see, that the session_id of start.php and continue.php are the same!
Why is this and how can I change this behaviour for the frameset-version?
Thanks