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伺服器
#以上是php不同使用者跳轉不同頁面的詳細內容。更多資訊請關注PHP中文網其他相關文章!