给网站网页PHP页面设置访问密码

给网站网页PHP页面设置访问密码,下面是成品效果。
给网站网页PHP页面设置访问密码

如何实现

新建一个MkEncrypt.php文件在根目录下或者同级目录下。

MkEncrypt.php里面添加以下代码:

<?php  if(!defined('MK_ENCRYPT_SALT'))  define('MK_ENCRYPT_SALT', 'Kgs$JC!V');    /**  * 设置访问密码  小蚂蚁资源网www.xmy7.com  * @param $password 访问密码  * @param $pageid 页面唯一 ID 值,用于区分同一网站的不同加密页面  */  function MkEncrypt($password, $pageid = 'default') {  $pageid = md5($pageid);  $md5pw = md5(md5($password).MK_ENCRYPT_SALT);  $postpwd = isset($_POST['pagepwd']) ? addslashes(trim($_POST['pagepwd'])) : '';  $cookiepwd = isset($_COOKIE['mk_encrypt_'.$pageid]) ? addslashes(trim($_COOKIE['mk_encrypt_'.$pageid])) : '';    if($cookiepwd == $md5pw) return; // Cookie密码验证正确    if($postpwd == $password) { // 提交的密码正确  setcookie('mk_encrypt_' . $pageid, $md5pw, time() + 3600000, '/');  return;  }  ?>  <html>  <head>  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">  <meta charset="UTF-8">  <meta http-equiv="X-UA-Compatible" content="IE=edge">  <meta name="renderer" content="webkit">  <meta name="author" content="mengkun">  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">  <title>该页面已被加密</title>  <style type="text/css">  *{font-family:"Microsoft Yahei",微软雅黑,"Helvetica Neue",Helvetica,"Hiragino Sans GB","WenQuanYi Micro Hei",sans-serif;box-sizing:border-box;margin:0px;padding:0px;font-size:14px;-webkit-transition:.2s;-moz-transition:.2s;-ms-transition:.2s;-o-transition:.2s;transition:.2s}  html,body{width:100%;height:100%}  body{background-color:#F4F6F9;color:#768093}  input,button{font-size:1em;border-radius:3px;-webkit-appearance:none}  input{width:100%;padding:5px;box-sizing:border-box;border:1px solid #e5e9ef;background-color:#f4f5f7;resize:vertical}  input:focus{background-color:#fff;outline:none}  button{border:0;background:#6abd09;color:#fff;cursor:pointer;opacity:1;user-select:none}  button:hover,button:focus{opacity:.9}  button:active{opacity:1}  .main{width:100%;max-width:500px;height:300px;padding:30px;background-color:#fff;border-radius:2px;box-shadow:0 10px 60px 0 rgba(29,29,31,0.09);transition:all .12s ease-out;position:absolute;left:0;top:0;bottom:0;right:0;margin:auto;text-align:center}  .alert{width:80px}  .mk-side-form{margin-bottom:28px}  .mk-side-form input{float:left;padding:2px 10px;width:77%;height:37px;border:1px solid #ebebeb;border-right-color:transparent;border-radius:2px 0 0 2px;line-height:37px}  .mk-side-form button{position:relative;overflow:visible;width:23%;height:37px;border-radius:0 2px 2px 0;text-transform:uppercase}  .pw-tip{font-weight:normal;font-size:26px;text-align:center;margin:25px auto}  #pw-error {color: red;margin-top: 15px;margin-bottom: -20px;}  .return-home{text-decoration:none;color:#b1b1b1;font-size:16px}  .return-home:hover{color:#1E9FFF;letter-spacing:5px}  </style>  </head>  <body>  <div class="main">  <svg class="alert" viewBox="0 0 1084 1024" xmlns="http://www.w3.org/2000/svg" width="80" height="80">  <defs><style/></defs>  <path d="M1060.744 895.036L590.547 80.656a55.959 55.959 0 0 0-96.919 0L22.588 896.662a55.959 55.959 0 0 0 48.43 83.907h942.14a55.959 55.959 0 0 0 47.525-85.534zm-470.619-85.172a48.008 48.008 0 1 1-96.015 0v-1.567a48.008 48.008 0 1 1 96.015 0v1.567zm0-175.345a48.008 48.008 0 1 1-96.015 0V379.362a48.008 48.008 0 1 1 96.015 0v255.157z" fill="#FF9800"/>  </svg>    <form action="" method="post" class="mk-side-form">  <h2 class="pw-tip">该页面已被加密</h2>  <input type="password" name="pagepwd" placeholder="请输入访问密码查看" required><button type="submit">访问</button>  <?php if($postpwd): ?>  <p id="pw-error">密码不对哦~</p>  <script>setTimeout(function() {document.getElementById("pw-error").style.display = "none"}, 2000);</script>  <?php endif; ?>  </form>  <a href="/" rel="external nofollow"  class="return-home" title="点击回到网站首页">- 返回首页 - </a>  </div>  </body>  </html>  <?php  exit();  }

把下面的代码放在你需要加密的页进行调用

<?php      require_once('MkEncrypt.php');      MkEncrypt('123456');       ?>

 

WEEX交易所已上线平台币 WEEX Token (WXT)。WXT 作为 WEEX 交易所生态系统的基石,主要用于激励 WEEX 交易平台社区的合作伙伴、贡献者、先驱和活跃成员。

新用户注册 WEEX 账户、参与交易挖矿及平台其他活动,均可免费获得 WXT 空投奖励。

点此注册 WEEX 账户,即刻领取 1,600 WXT 新用户专属空投

MkEncrypt(‘123456’);括号里面123456修改成你需要设置的密码。

密码正确才能进去页面,进入后会存下cookies值,下一次登录的时候则不需要再次输入了,只要是PHP程序 都是支持这段代码的。

本站资源均来源于网络或网友投稿,部分资源未经测试,难免存在BUG,所有资源只限于学习研究,不得商用。如使用本站下载的资源造成任何损失或发生侵权行为,均与本站无关。如不接受本声明请勿下载!本站资源如有侵权,请联系QQ:497149677核实后立即删除!
最客资源网 » 给网站网页PHP页面设置访问密码