1.��¼Դ��php
2.自己有php网站源码怎么知道后台密码
3.求不用数据库简单的登录登陆PHP密码验证源码
��¼Դ��php
对于一个帐号在同一时间只能一个人登录,可以通过下面的源码源码方法实现:
1 .在用户登录时,把用户添加到一个ArrayList中
2 .再次登录时查看ArrayList中有没有该用户,登录登陆如果ArrayList中已经存在该用户,源码源码则阻止其登录
3 .当用户退出时,登录登陆宁夏pc源码需要从该ArrayList中删除该用户,源码源码源码如何显示这又分为三种情况
① 使用注销按钮正常退出
② 点击浏览器关闭按钮或者用Alt+F4退出,登录登陆可以用javascript捕捉该页面关闭事件,源码源码
执行一段java方法删除ArrayList中的登录登陆用户
③ 非正常退出,比如客户端系统崩溃或突然死机,源码源码可以采用隔一段时间session没活动就删除该session所对应的登录登陆用户来解决,这样用户需要等待一段时间之后就可以正常登录。源码源码
在LoginAction中定义:
// 用来在服务器端存储登录的登录登陆react源码难懂所有帐号
public static List logonAccounts;
login() 登录方法中:
// 设置session不活动时间为分
request.getSession().setMaxInactiveInterval(*);
if(logonAccounts==null){
logonAccounts = new ArrayList();
}
// 查看ArrayList中有没有该用户
for (int i = 0; i < logonAccounts.size(); i++) {
Account existAccount = (Account)logonAccounts.get(i);
if(account.getAccountId().equals(existAccount.getAccountId())){
return "denied";
}
}
// 在用户登录时,把sessionId添加到一个account对象中
// 在后面 ③ 需要根据此sessionId删除相应用户
account.setSessionId(request.getSession().getId());
// 该用户保存到ArrayList静态类变量中
logonAccounts.add(account);
return "login";
① 使用注销按钮正常退出
logout() 退出方法中:
if(logonAccounts==null){
logonAccounts = new ArrayList();
}
// 删除ArrayList中的源码源码用户 ⑴
for (int i = 0; i < logonAccounts.size(); i++) {
Account existAccount = (Account)logonAccounts.get(i);
if(account.getAccountId().equals(existAccount.getAccountId())){
logonAccounts.remove(account);
}
}
② 点击浏览器关闭按钮或者用Alt+F4退出:
在后台弹出一个窗口,在弹出窗口中删除ArrayList中的登录登陆用户
function window.onbeforeunload(){
// 是否通过关闭按钮或者用Alt+F4退出
// 如果为刷新触发onbeforeunload事件,下面if语句不执行
if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){
window.open('accountUnbound.jsp','',
'height=0,width=0,top=,left=')
}
}
accountUnbound.jsp : 弹出窗口中删除ArrayList中的用户
<%
Account account = (Account) request.getSession().getAttribute("account");
if(account != null){
if(LoginAction.logonAccounts==null){
LoginAction.logonAccounts = new ArrayList();
}
// 删除ArrayList中的用户——下面代码和上面的 ⑴ 处一样
for (int i = 0; i < logonAccounts.size(); i++) {
Account existAccount = (Account)logonAccounts.get(i);
if(account.getAccountId().equals(existAccount.getAccountId())){
logonAccounts.remove(account);
}
}
}
%>
为了保证上面代码可以执行完毕,3秒后关闭此弹出窗口(也位于accountUnbound.jsp中)
<script>
setTimeout("closeWindow();",spring源码记忆);
function closeWindow(){
window.close();
}
</script>
③ 使LoginAction 实现implements HttpSessionListener,并实现sessionCreated,sessionDestroyed方法,在sessionDestroyed中删除ArrayList中的用户(用户超过分钟不活动则执行此方法)
public void sessionDestroyed(HttpSessionEvent event) {
// 取得不活动时的sessionId,并根据其删除相应logonAccounts中的用户
String sessionId = event.getSession().getId();
for (int i = 0; i < logonAccounts.size(); i++) {
Account existAccount = (Account)logonAccounts.get(i);
if(account.getSessionId().equals(existAccount.getSessionId())){
logonAccounts.remove(account);
}
}
}
注:
对于上面的,由于弹出窗口很容易被防火墙或者安全软件阻拦,查询excel源码造成无法弹出窗口,从而短时间不能登录,这种情况可以用AJAX来代替弹出窗口,同样在后台执行删除用户的那段代码,却不会受到防火墙限制:
<script>
// <![CDATA[
var http_request = false;
function makeRequest(url) {
http_request = false;
if (window.XMLHttpRequest) { // Mozilla, Safari,...
http_request = new XMLHttpRequest();
if (http_request.overrideMimeType) {
http_request.overrideMimeType('text/xml');
}
} else if (window.ActiveXObject) { // IE
try {
http_request = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
http_request = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
}
}
}
if (!http_request) {
alert('Giving up :( Cannot create an XMLHTTP instance');
return false;
}
http_request.onreadystatechange = alertContents;
http_request.open('GET', url, true);
http_request.send(null);
}
function alertContents() {
if (http_request.readyState == 4) {
if (http_request.status == ) {
window.close();
} else {
alert('There was a problem with the request.');
}
}
}
function window. onbeforeunload() {
makeRequest ('accountUnbound.jsp');
}
//]]>
</script>
自己有php网站源码怎么知道后台密码
后台密码配置文件里肯定没有,你只能看看这套源码在登录的时候是怎么比对密码的,如果单纯的MD5的话,你可以建一个PHP测试文件然后MD5一个新的密码,把这个值替换到数据库里的密码字段。我碰见你的这种问题的时候就是这么解决的。
求不用数据库简单的PHP密码验证源码
不用数据将密码直接写到源程序当中是很危险的只要查看源程序就知道密码
<form action="?" method="post">
用户名:<input type="text" name="username"/></br>
密 码:<input type="password" name="pwd" /></br>
<input type="submit" value="登入" /></br>
</form>
<?php
$username='admin';
$pwd='';
if(isset($_POST['username'])){
if( $_POST['username']==$username && $_POST['pwd']==$pwd ){
echo "登入成功!";
}else{
$_POST['pwd']==$pwd ){
echo "登入失败!";
}
}
>以上就是了,这种要每次重新登入
密码也不安全,不过有办法
你重新创建一个php
<?php
echo md5("");//你要设置的密码
>进去这个页面他会给出一个md5数据摘要
复制到$pwd
然后把密码对比改为
md5($_POST["pwd"])==$pwd
这种的话别人即使看到源码也不知道密码是什么
賴清德threads抽限量簽名時代雜誌 超過4000名網友瘋搶!
大漠绑定多个窗口源码_大漠插件绑定多个窗口
药物购销平台源码查询
年时间周期的源码_年份周期问题
能跨区上班吗?能出小区吗?能快递外卖吗?天河最新疫情防控措施权威问答来了
电子招投标系统源码_电子招投标系统源码怎么设置