Jump to content

passing session data between subdomains


ohdang888

Recommended Posts

Alright, So i want to pass a session from www.mysite.com to mobile.mysite.com

 

And i'm doing so by calling this on the top of every page on each site:

<?php
session_set_cookie_params(360000, "/",".mysite.com");
session_start();
print_r($_SESSION);
?>

 

yet, the session data that is set on one subdomain is NOT printed on the other subdomain. I've even tried destroying the sessions several times to start over. But it won't work.

 

What could be up?

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/233312-passing-session-data-between-subdomains/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.