时间:2021-07-01 10:21:17 帮助过:18人阅读
php页面设置密码的方法:首先创建一个recheck.php文件;然后将该php文件包含在需要设置独立访问密码的最前面即可。
本文操作环境:Windows7系统、PHP7.1版,DELL G3电脑
php页面怎么设置密码?
PHP页面设置独立访问密码(页面加密)
对某些php页面设置单独的访问密码,如果密码不正确则无法查看内容,相当于对页面进行了一个加密。只需要将以下php文件包含在你需要设置独立访问密码的最前面就可以了。
recheck.php
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>title</title> <style> #divcss{margin:300 auto;width:400px;height:40px;} #footer { height: 40px; line-height: 40px; position: fixed; bottom: 0; width: 100%; text-align: center; background: #373d41; color: #ffffff; font-family: Arial; font-size: 16px; letter-spacing: 1px; } a {text-decoration: none} </style> </head> <body> <?php //所有需要输出二次密码打开的页面,只需要将本php文件进行包含即可 $url = 'http://'.$_SERVER['SERVER_NAME'].':'.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; //echo $url; if (!session_id()){session_start();}; if(isset($_GET['close'])){ $url = $_GET['url']; unset($_SESSION['recheck']); } if(isset($_POST['password']) && $_POST['password'] == '123456'){ $_SESSION['recheck'] = 1; header('location:'.$url); } if(!isset($_SESSION['recheck'])){ exit('<div id="divcss"> <form method="post"> 请输入独立访问密码:<input type="password" name="password" /> <input type="submit" value="确定" />(密码:123456) </form> </div> '); } ?> <div id="footer"><a href="?close=yes&url=<?php echo $url?>"><font color="#FFFFFF">安全退出本页面</font></a></div> </body> </html>
在需要进行设置独立密码访问的页面包含该php文件即可,这样就能保证只有输入正确的访问密码后才可以访问指定页面了;也可以稍作修改封装成函数直接插入到需要设置访问密码的页面顶部,这样就可以每个页面设置不一样的访问密码了!
<?php include(‘recheck.php’); ?>
推荐学习:《PHP视频教程》
以上就是php页面怎么设置密码的详细内容,更多请关注gxlcms其它相关文章!