0

我已成功为已过期的事件发送警报电子邮件。从电子邮件中有一个链接,使用户能够链接回该特定事件的详细信息。如果用户还没有登录,它将重定向到登录页面。登录成功后,返回首页。如果我想在登录后重定向到特定的事件页面怎么办?

     $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 );
  }
4

1 回答 1

0

首先,您必须将有关事件的信息(例如,事件 ID)传递给电子邮件上的链接。

然后,您可以在处理用户登录时保留此事件 ID,如果可以 - 请按事件 ID 重定向到事件页面。

于 2013-08-21T05:04:12.870 回答