我有这个代码,我用它来向用户电子邮件发送批准。我需要的是:当用户点击链接时;他应该先登录,然后才能进行审批流程。我尝试了以下代码来检查会话是否未注册,然后强制用户登录(index.php):
global $user_ID;
$user_ID = $_SESSION['empName'];
if ($user_ID == '') {
header('Location: index.php'); exit();
}
echo "<INPUT type='hidden' name='Code' size = '6' value ='hr1.php' />";
if(isset($_POST['Code'])){$Code = $_POST['Code'];}
mysql_close($con);
现在我需要一种方法将用户重定向到上一页(链接)
有任何想法吗???