cltn77 Posted June 3, 2009 Share Posted June 3, 2009 I want to retrieve session at new window after i click a link from the main window. Test2.php is main page Test.php is new page Test2.php <?php session_start(); $_SESSION['usercd']='usercd'; ?> <html> <body> <A class=medium href="test.php" target="_blank">Test</A> </body> <?php echo "<pre>"; print_r($_SESSION); echo "</pre>"; ?> </html> test.php <?php session_start(); echo "<pre>"; print_r($_SESSION); echo "</pre>"; ?> Can any one help me? TQ Quote Link to comment https://forums.phpfreaks.com/topic/160754-solved-session-blank-at-page-2/ Share on other sites More sharing options...
aschk Posted June 3, 2009 Share Posted June 3, 2009 If you have firebug installed can you see the cookie being passed back with the session identifier in it? Also are you sure sessions is enabled on your server. Quote Link to comment https://forums.phpfreaks.com/topic/160754-solved-session-blank-at-page-2/#findComment-848394 Share on other sites More sharing options...
cltn77 Posted June 3, 2009 Author Share Posted June 3, 2009 yes. cause for the main page i can retrieve the session value but at new page can't see. Quote Link to comment https://forums.phpfreaks.com/topic/160754-solved-session-blank-at-page-2/#findComment-848398 Share on other sites More sharing options...
PFMaBiSmAd Posted June 3, 2009 Share Posted June 3, 2009 print_r($_SESSION); on the main page does not actually mean that sessions are working at all. It just means that there is a variable being set on the main page called $_SESSION['usercd'] and you can display it on that page. For debugging purposes, add the following two lines of code immediately after your first opening <?php tag on both pages - ini_set("display_errors", "1"); error_reporting(E_ALL); Quote Link to comment https://forums.phpfreaks.com/topic/160754-solved-session-blank-at-page-2/#findComment-848476 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.