Ben alt etki arasında oturum değişkenleri geçen hakkında (bu da dahil olmak üzere) birçok forum okudum, ve ben bu işe alınamıyor. Birisi eksik ne açıklayabilir misiniz?
Step 1 In the php.ini file: session.cookie_domain = ".mydomain.com" Verified with phpinfo() that I am using the right php.ini file
Step 2 In page at www.mydomain.com set a session variable $_SESSION['a'] , verify that it appears by calling it on the next page (it does). Clink link to sub.mydomain.com
Step 3 Page at sub.mydomain.com checks if session variable is set using:
$a = $_SESSION['a']; if(!isset($_SESSION['a'])){ echo "Error: Session Variable not available"; }
Ne yazık ki benim hata mesajı alıyorum. Ne eksik? Yardımlarınız için şimdiden teşekkür ederiz.