PHP权限登录,该怎么处理

PHPz
Release: 2018-11-13 15:37:51
Original
3489 people have browsed it

PHP权限登录

用 户  名(user):_____

密      码(password):_____

选择身份(user_id):_____     <----这里是一个下拉菜单,有学生教师和管理员3个值

在按submit时,数据传送到login.php中

在login中要怎么写代码让不同身份的id登录记录在session里并跳转到不同界面。

在config.php中有连接数据库代码可以直接调用。

$db=mysql_connect('localhost','root','123456') or die(数据库连接失败!);

mysql_select_db('bishe');

?>

没有使用过SESSION,不知道该怎么写····

------解决方案--------------------

简单的很! 在代码最开头session_start(),初始化SESSION。后面就可以直接给$_SESSION超级全局变量赋值,或者读取。

http://www.w3school.com.cn/php/php_sessions.asp

------解决方案--------------------

<?php
session_start();
…
$_SESSION[&#39;身份_id&#39;] = &#39;&#39;;
if($_SESSION[&#39;身份_id&#39;]==&#39;XXX&#39;){
header("location:http://www.baidu.com");
}
if($_SESSION[&#39;身份_id&#39;]==&#39;XXX&#39;){
header("location:http://www.google.com");
}
…
Copy after login

最好是写个函数。

权限是个大问题。不是是说跳转就能解决了。

------解决方案--------------------

session_start();
if(@$_POST["login"])
{
echo "<script language=\"javascript\">location.href=&#39;admin.php&#39;;</script>";
}
Copy after login

在if里嵌套你自己的条件跳转到你想去的页面

先做用户身份验证

根据用户身份取得权限字,保存于 session 中

所有需要身份验证的页面都要在进入时验证身份(通过权限字)

session没有限制你保存什么,但是出于编写的快捷,资源的占用等考虑,一般都使用数字来存储。

在ini里设置auto session也可以。

以上就是对PHP权限登录,该怎么处理的全部介绍,如果您想了解更多有关php编程入门,请关注PHP中文网。





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!