我已成功为已过期的事件发送警报电子邮件。从电子邮件中有一个链接,使用户能够链接回该特定事件的详细信息。如果用户还没有登录,它将重定向到登录页面。登录成功后,返回首页。如果我想在登录后重定向到特定的事件页面怎么办?
$contractid = $_REQUEST['Contract_ID'];
$contract_update_url = "contract_updates.php?id=".$contractid;
$MM_redirectLoginSuccess = "news_mgm.php";
if (isset($_SESSION['MM_Username'])){
header("Location: " . $MM_redirectLoginSuccess );}
if(!empty ($contactid))
{
header("Location: " . $contract_update_url );
}
else{
// header("Location: " . $MM_redirectLoginSuccess );
header("Location: javascript://history.go(-1)");
}
}
else {
header("Location: ". $MM_redirectLoginFailed );
}