My code looks like this
if (...) {
if(check_if_already_done()) {
header("location: home.php");
};
do_it();
header("location: done.php);
}
in this case even if already done returns true its going to done.php instead of home.php but when i add die; after header("location: home.php"); it does go to home.php can someone explain why? It has to do with finishing main IF before doing header even if that header is at the end of nested if?