Jump to content

IE6 looses session vars


cekadev

Recommended Posts

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

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.