Re: [PHP] Complex session issue

2002-07-16 Thread Justin French
session_name() enables you to refer to a session by name, rather than just referring to *a* session. check the manual, but I believe for session "x" you, would call session_name("mysession_y"); BEFORE session_start(), and for session y, you would call session_name("mysession_x"); there's a good

[PHP] Complex session issue

2002-07-15 Thread Divyank Turakhia
I have a situation where I have one browser window open for lets say web application 'x'. Now I want my user to goto application 'y' on the same domain in a new browser window by passing the authentication information from application 'x' to application 'y'. I obviously donot want my session varia