I'm writing session on mydomain.com/login.php
I believe this can't be accessed in www.mydomain.com
. Is that right?
How can I write to $_SESSION so I can access it from both the www. and non-www version of my domain?
I'm writing session on mydomain.com/login.php
I believe this can't be accessed in www.mydomain.com
. Is that right?
How can I write to $_SESSION so I can access it from both the www. and non-www version of my domain?
session_set_cookie_params("$lifetime","$path","$domain","$secure","$httponly") is the best one in php language for setting session in both www and non-www url
have a look at session_set_cookie_params it explains setting
.
in the domain will allows for access to subdomains as well,miki has an example
http://www.php.net/manual/en/function.session-set-cookie-params.php#94961