Hi,

I have written a login system in PHP which appears to work OK except on a particular windows network. Basically the user can log in, but after viewing a few pages IE crashes.

I can view the same site on my PowerBook using Safari with no problems.

The offending code is as follows:

<?php
session_start();

if (!ISSET($_SESSION['loggedin'])) {
        header("Location: /admin/login/");
}
else
{
//rest of the page.....

}
?>

Any ideas why this would cause IE to crash

Cheers,

Matt

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to