I need to transfer the session value in one browser to another browser in my web site
For example from Firefox to Google Chrome
I need to transfer the session value in one browser to another browser in my web site
For example from Firefox to Google Chrome
It is impossible to transfer a PHP $_SESSION
variable or any other value between browsers, even with JS.
If your website contains a login, you could attach information to that login in a database and retrieve it when a user logs in using another browser.
You could set your own cookies with a session id and use a shared session database for all of your domains. This would require some legwork in implementing your own sessions.