隐私访问?设置权限?有什么办法 下面的代码就可为网站设置密码
下载地址在最下面
<?php
//来源byteam.cn
error_reporting(0);
$password = "1997";//这里是密码
$p = "";
if(isset($_COOKIE["isview"]) and $_COOKIE["isview"] == $password){
$isview = true;
}else{
if(isset($_POST["pwd"])){
if($_POST["pwd"] == $password){
setcookie("isview",$_POST["pwd"],time()+3600*3);
$isview = true;
}else{
$p = (empty($_POST["pwd"])) ? "需要密码才能查看,请输入密码。" : "密码不正确,请重新输入。";
}
}else{
$isview = false;
$p = "";
}
}
if($isview){?>
<!--这里是要访问的页面代码,比如:
<!DOCTYPE html>
<html>
<head>
<title></title>//在这里输入原本站点源代码
</head>
<body>
</body>
</html>
-->
<?php
}else{
include 'pwd.php';
}?>
Comments | NOTHING