Home > Backend Development > PHP Tutorial > 使用session判断用户登录用户权限(超简单)_PHP

使用session判断用户登录用户权限(超简单)_PHP

WBOY
Release: 2016-06-01 12:06:51
Original
1087 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