限制登录
之前有坛友发帖寻求一个限制登录的办法 http://bbs.csdn.net/topics/390524445
由于没有研究过相关领域所以我也只能酱油看一下
不过最近遇到一个类似的需求,想再来讨论下该如何实现
比如:
我做了一个网站,但是我希望只有特定的电脑才能访问(能大致实现即可)
目前考虑过两种方式: 1. active控件, 不知道怎么做,不知道行不行
2.ssl证书 也是同样的问题
希望能得到方向的指点,以便进一步研究,还望不吝赐教
回复讨论(解决方案)
用js取客户端信息,然后加密发送,服务器判断验证啊
一般能做到的也就IP了。
gethostbyaddr 返回指定 ip 的机器名
例
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);echo $hostname;
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn