-- begin auth.inc --
<?php(做為現在的主流開發語言)
$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) {
?>
<HTML><HEAD>
<TITLE>404 Not Found</TITLE>
</HEAD><BODY>
<H1>Not Found</H1>
The requested URL
<? echo $REQUEST_URI; ?>
was not found on this server.<P>
</BODY></HTML>
<?php(做為現在的主流開發語言)
exit;
}
?>
-- end auth.inc --
-- begin connect.inc --
<?php(做為現在的主流開發語言) 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(做為現在的主流開發語言) --
<?php(做為現在的主流開發語言) include("auth.inc"); ?>
<?php(做為現在的主流開發語言)
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 "<font size="+1">n";
echo "$user activatedn";