使用session判断用户登录用户权限(超简单)_php技巧

WBOY
Release: 2016-05-17 09:02:30
Original
1100 people have browsed it

如下所示:

复制代码 代码如下:


用户名:

密  码:



session_start();
$_SESSION["user"]=$_POST[user];
$_SESSION["password"]=$_POST[pwd];
if($_SESSION[user]==""){
 echo "";
}

if($_SESSION["user"]=="admin"){
 echo "当前登录:系统管理员
用户管理";
}else{
 echo"当前登录:".$_SESSION[user]."
我的相册";
}
?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!