Possible Duplicate:
Allow php sessions to carry over to subdomains
How to setup user php $_SESSION
to work in all subdomains?
Like Google makes it.
Have a look at session_set_cookie_params() to find out how to make your session cookie accessible to your domain
There are several things to take in account while sharing $_SESSION
across subdomains.
Are all subdomains on ran by the same server?
If not, then, you will need to share sessions amongst servers, there are several solutions:
If they are, you may just need to configure your cookie domain using session.cookie_domain
ini directive.
Are you running Suhosin, if you do, you may need to disable some security options to allow your session to be decrypted on the others servers.