你會如何編碼?我有一部分可以將某些角色重定向到頁面,但在限制他們查看特定頁面方面存在問題。在php中限制對角色的訪問
我已經試過這樣:
session_start();
if($_SESSION['username'] == "[email protected]");
{
header('location: student_listing');
die();
}
else {
header('location: student_entry');
}
但它說,該網站崩潰,因爲太多的重定向。
這是基於意見的。如果你嘗試了某些東西,你能告訴我們你的代碼嗎 – 2015-03-13 07:45:30
@ApulGupta我加了一些代碼 – anonymous4321 2015-03-13 07:49:45
你面臨什麼問題?你在哪裏試圖檢查角色的特權? – 2015-03-13 07:52:01