Heim > php教程 > php手册 > Hauptteil

PHP用户认证及管理完全源码

WBOY
Freigeben: 2016-06-13 10:30:58
Original
817 Leute haben es durchsucht

-- begin auth.inc --  


(做为现在的主流开发语言)  


$id = "xxxCOM";  


if(!isset($php(做为现在的主流开发语言)_AUTH_USER)) {  

Header("WWW-Authenticate: Basic realm="$id"");  

Header("HTTP/1.0 401 Unauthorized");  

require(error.inc);  

exit;  

}  


$name = $php(做为现在的主流开发语言)_AUTH_USER;  

$pass = $php(做为现在的主流开发语言)_AUTH_PW;  

require("connect.inc");  

$query = "select * from auth where username=$name && realm=$id";  

$result = MySQL(和PHP搭配之最佳组合)_db_query("admin", $query);  

if(MySQL(和PHP搭配之最佳组合)_num_rows($result) == 0) {  


Header("WWW-Authenticate: Basic realm="$id"");  

Header("HTTP/1.0 401 Unauthorized");  

require(error.inc);  

exit;  

}  


$active = MySQL(和PHP搭配之最佳组合)_result($result,0,"active");  

if($active == no) {  


?>  

  

404 Not Found  

  

Not Found

  

The requested URL  

echo $REQUEST_URI; ?>  

was not found on this server.

  

  

(做为现在的主流开发语言)  

exit;  

}  

?>  


-- end auth.inc --  


-- begin connect.inc --  


(做为现在的主流开发语言) MySQL(和PHP搭配之最佳组合)_connect("localhost", "user", ""); ?>  


-- end connect.inc --  


-- begin error.inc --  


此文件存放错误信息及返回!  


-- end error.inc --  


-- 用户库结构(自己调整)--  


CREATE TABLE auth (  

id smallint(6) DEFAULT 0 NOT NULL auto_increment,  

username varchar(16) DEFAULT NOT NULL,  

lastname tinyblob,  

firstname tinyblob,  

password varchar(16),  

realm varchar(16),  

active char(3),  

Prima(最完善的虚拟主机管理系统)RY KEY (id),  

UNIQUE id (id),  

UNIQUE username (username)  

);  


-- 用户库结构结束--  


-- 添加用户示例--  


insert into auth (username, lastname, firstname, password, realm, active) values (admin,my,love,password,xxxCOM,yes);  


-- 结束--  


--用户管理程序开始 usermanage.php(做为现在的主流开发语言) --  

(做为现在的主流开发语言) include("auth.inc"); ?>  

(做为现在的主流开发语言)  


if ($php(做为现在的主流开发语言)_AUTH_USER != "admin") {  

Header("WWW-Authenticate: Basic realm="xxxCOM 客户认证"");  

Header("HTTP/1.0 401 Unauthorized");  

echo "access(小型网站之最爱) Denied!n";  

exit;  

};  


if ($php(做为现在的主流开发语言)_AUTH_PW != "mypassword") {  

Header("WWW-Authenticate: Basic realm="xxxCOM 客户认证"");  

Header("HTTP/1.0 401 Unauthorized");  

echo "access(小型网站之最爱) Denied!n";  

exit;  

};  


if ($activate) {  


include("connect.inc");  

$query1 = "UPDATE auth SET active=yes where id=$id";  

$result1 = MySQL(和PHP搭配之最佳组合)_db_query("admin", $query1);  


if ($result1) {  

echo "n";  

echo "$user activatedn";  

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Empfehlungen
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!