I was thinking the other day, if someone is protecting their pages like this :
if(!$logged_in)
{
header("Location:http://mysite/login.php");
}
// protected content here
is there any way to ignore the HTTP Header redirect at the browser level and then display the protected content that follows it ?