首页
微语
统计
友链
留言
memos
圈子
图床
推荐
相册
网站监控
VPS监控
Search
1
实现typecho微信时光机功能的图文教程
45,257 阅读
2
为Typecho添加webp解析
43,193 阅读
3
emlog数据成功迁移到typecho
26,745 阅读
4
Memos备忘录,记录瞬间想法
25,731 阅读
5
Jasmine - 简约、美观的博客主题
24,413 阅读
手机达人
免费资源
电脑网络
娱乐休闲
网站建设
威言威语
Typecho
Emlog
WordPress
服务器
主题
插件
排行榜    
登录
/
注册
Search
标签搜索
wordpress
发布
插件
免费
教程
typecho
EMlog
PHP
代码
CSS
华为
图片
代码修改
安装
评论
手机
诺基亚
微信
文章
智能
Chen'mo
累计撰写
1,266
篇文章
累计收到
374
条评论
首页
栏目
手机达人
免费资源
电脑网络
娱乐休闲
网站建设
威言威语
Typecho
Emlog
WordPress
服务器
主题
插件
页面
微语
统计
友链
留言
memos
推荐
相册
网站监控
VPS监控
搜索到
1
篇与
的结果
2017-12-23
PHP输入密码并列出目录文件生成超链接代码
一个可以加密文件夹,并且可以展示文件夹内文件的php代码:<?php $password = "123456"; // 这里是密码 $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> <meta charset="gb2312" /> <title>加密内容</title> <meta name="Keywords" content="加密内容" /> <meta name="Description" content="加密内容" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> </head> <body> <div id="post"> <pre id="neirong"> <?php $dir = "./"; // Open a known directory, and proceed to read its contents if (is_dir($dir)) { if ($dh = opendir($dir)) { while (($file = readdir($dh)) !== false) { if ($file!="." && $file!="..") { echo "<a href=./".$file.">".$file."</a><br>"; } } closedir($dh); } } ?> </pre> </div> </body></html> <?php }else{ ?> <!DOCTYPE HTML> <html> <head> <meta charset="gb2312" /> <title>输入密码</title> <meta name="Keywords" content="输入密码" /> <meta name="Description" content="输入密码" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> </head> <body> <div id="post"> <img src="key.png"> <form action="?yes" method="post" style="margin:0px;">输入查看密码 <input type="password" name="pwd" /> <input type="submit" value="查看" /> </form> <?php echo $p; ?> </div> <?php } ?> </body> </html> 来源:https://diannaobos.com/post/567.html
2017年12月23日
3,981 阅读
0 评论
0 点赞