Jump to content

[SOLVED] Header re-direct and using die()


FWDrew

Recommended Posts

Hi everyone,

 

I have a quick question for anyone who has time to explain something to me. I was recently reading a php article that basically suggested:

 

If you do employ this method, don’t forget that the script may continue executing after the user has gone. Always follow up your header redirects with a die();

 

header("Location: http://www.mysite.com/login.php");
die();

 

I've never really gotten into the practice of doing this, as my headers are usually wrapped in a conditional statement at the top (if condition is not meet, redirect, or else execute script). Is this a practice I should start implementing? Thanks for your time.

 

 

Link to comment
https://forums.phpfreaks.com/topic/161212-solved-header-re-direct-and-using-die/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.