16 Star 23 Fork 12

WiFiDog无线热点认证解决方案/wifidog-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 688 Bytes
一键复制 编辑 原始数据 按行查看 历史
佐须之男 提交于 2015-09-14 17:30 +08:00 . WiFiDog服务端程序
<?php
/*
* 版权所有: www.wifidog.pro(WifiDog中文社区) 作者: 佐须之男 联系方式: 181-1435-4589
*/
$token = md5(uniqid());
$gw_address = $_REQUEST['gw_address'];
$gw_port = $_REQUEST['gw_port'];
if(empty($gw_address) || empty($gw_port)){
die('error');
}
$url="http://".$gw_address.":".$gw_port."/wifidog/auth?token=".$token;
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>正在验证,请稍后</title>
<meta http-equiv="refresh" content="0.1;URL=<?php echo $url?>">
</head>
<body>
正在验证,请稍后....
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/wifidog/wifidog-server.git
git@gitee.com:wifidog/wifidog-server.git
wifidog
wifidog-server
wifidog-server
master

搜索帮助