cekadev Posted July 14, 2010 Share Posted July 14, 2010 Hello, Seems i'm missing something here... My session vars are passed without problems through different browsers on MAC and PC... except on IE 6 ! I've been doing a lot of research but I am still unable to debug ! For debugging purposes, I've simplified my code to this : a page called sess1.php <? session_start(); $_SESSION['unique_id'] = "bob"; header("Location:http://manufacteco.com/sess2.php"); exit(); ?> which should redirect to a page called sess2.php and print out "bob" <? session_start(); echo $_SESSION['unique_id']; ?> Simple enough ? Works everywhere except on IE6. Any ideas ? Link to comment https://forums.phpfreaks.com/topic/207738-ie6-looses-session-vars/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.