php不同使用者跳轉不同頁面:
一、密碼校驗
這裡view層提交過來的使用者名稱和密碼是不加密的,資料中的密碼是經過md5加密的,所以首先對密碼進行加密,然後跟資料庫中的記錄比對,如果一致則認為成功。
二、session儲存
如果校驗成功則將使用者資訊儲存在session中。
三、根據不同許可權跳轉
有時候我們對於不同的使用者展示的頁面也不同,這時就需要我們根據使用者的許可權跳轉到相應的頁面。
四、實現程式碼
// 登入 public function login() { //密碼加密並從資料庫查詢記錄 $map['username'] = input('post.a'); $map['password'] = md5(input('post.b')); $user=db('user')->where($where)->find(); //驗證成功則儲存session if ($user) { unset($user["psd"]); session("user", $user['id']); //根據不同許可權跳轉 if($user['quanxian'] == 0){ $this->redirect('Module1/index/index'); } elseif ($user['quanxian'] == 1) { $this->redirect('MOdule2/index/index'); } else{ $this->redirect('Module3/index/index'); } }else{ print_r ('error!'); return false; } }以上就是php不同使用者跳轉不同頁面的詳細內容,更多請關注TW511.COM其它相關文章!