HI,
I was wondering if you set a session variable in one domain (eg. www.test1.com) ,can you access it at another domain (eg.www.test2.com).
Based on my initial tests I would say no, but could someone confirm this. Thanks
Correct, this is impossible... You need to create a session at the other domain too.. maybe send this variable to the other domain, or (more secure) user session_ID if these domains run on the same machine... get the session_id and create a file somewhere on this computer with this name. Make sure it contains the info you want to send to the other domain. Now redirect to the other domain sending the sessionid http://www.test2.com/?id=$session_id at test2.com you can open the file and read the wanted information from this file...