<?php
session_start();
if(!isset($_SESSION["username"]))
{
header('Location: login.php');
exit;
}
?>
I have this code on the page I want to be password protected. Everything is working perfectly fine on Firefox, but in Internet Explorer it doesn't load the content of the page once the login information has been verified. Any suggestions? It can't really be my coding since it works fine with Firefox...
Thanks !!