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 ?

link|improve this question

72% accept rate
2  
You should quit processing at that point anyway... no need to fetch, crunch and display data if you'll never show it to the user anyway. – delnan Mar 3 '11 at 18:31
feedback

4 Answers

up vote 6 down vote accepted

Yes, because using the header() function merely sets a header. The server will continue running the rest of the PHP script, rendering the protected content

You'll want to do this instead

if(!$logged_in)
    {
        header("Location:http://mysite/login.php");
        exit();
    }
link|improve this answer
feedback

Yes.

Any headers can be ignored.

You should kill the page exit() right after you redirect the user.

link|improve this answer
feedback

Not sure but the advised procedure is to follow the header with the line:

if(!$logged_in)
    {
        header("Location:http://mysite/login.php");
exit();
    }
link|improve this answer
feedback

Well, if you output data and your users ignore the header redirect (non-standard browser) - yes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.