I have this test code,
page1.php
session_start();
$test = 'this is a test to see if bloody ie4 registers sessions.';
echo "$test";
session_register('test');
page2.php
session_start();
echo "$test";
On ie5 page2.php displays the content of $test, however on ie4, $test isn't shown. Does ie4 have a problem with sessions?
Cheers
Ben