線上增減.htpasswd內的使用者
include("./class.Htpasswd.php3");
/* 請修改此.htpasswd檔案路徑
*/
$htpasswdfile = "/usr2/amitc/.htpasswd";
// 此行請勿修改
echo '
if(!isset($operation)) {
}
else {
echo " ";
echo "您剛進行了此項操作,請核查
";
echo "您要對使用者 $username 及密碼 $password 進行 = [$doop]
";
$handle = new Htpasswd($htpasswdfile);
switch ($doop) {
case 'add':
print "使用者
";
$retval = $handle->addUser($username, $password);
if($retval) {
print "使用者 [$username] 加入成功!
";
} else {
print "加入使用者 [$username] 失敗.
";
}
break;
case 'change':
print '修改密碼
';
$retval = $handle->changePass($username, $password);
if($retval) {
print "[$username] 的密碼修改成功.
";
} else {
print "[$username] 的密碼修改失敗.
";
}
break;
case 'delete':
print '刪除使用者
';
$retval = $handle->deleteUser($username);
if($retval) {
print "[$username] 被刪除.
";
} else {
print "刪除 [$username]時發生錯誤.
";
}
break;
case 'verify':
print 'Code to verify user's password
';
$retval = $handle->verifyUser($username, $password);
if($retval) {
print "[$username] verifies okay with password [$password]
";
} else {
print "Verify Error for [$username] with [$password] (wrong password or user doesn't exist!)
";
}
break;
default:
print '您要中斷?
';
}
echo "";
}
?>
http://www.bkjia.com/PHPjc/316627.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/316627.htmlTechArticle線上增減.htpasswd內的使用者 ?php include(./class.Htpasswd.php3); /* 請修改此.htpasswd檔案路徑 */ $htpasswdfile = /usr2/amitc/.htpasswd; // 此行請勿修改 echo 'FOR...