So I have a couple of sub-domains sharing the same session right?
On sub-domain 1 (userpanel, editing info and stuff):
$_SESSION['user_id'] = 4;
On sub-domain 2 (see user profile):
$user_id = 8;
Back on sub-domain 1:
echo $_SESSION['user_id']; // output: 8!
How is $_SESSION['user_id'] set with the id 8?
Hope to learn something new ^_^