为什么我的页面会不停的刷新
[code=PHP][/code]
<?php include(“../login/qx.php”) ;?>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<frameset rows=”56,*” cols=”*” frameborder=”no” border=”2″ framespacing=”2″>
<frame src=”top.php” name=”topFrame” scrolling=”No” noresize=”noresize” id=”topFrame” title=”top” />
<frameset rows=”*” cols=”186,*” framespacing=”0″ frameborder=”no” border=”0″>
<frame src=”lift.html” name=”leftFrame” scrolling=”No” noresize=”noresize” id1本文来#源gaodai$ma#com搞$代*码*网
搞代gaodaima码
=”leftFrame” title=”left” />
<frame src=”mian.html” name=”mainFrame” id=”mainFrame” title=”main” />
<body>
其中qx.php的代码是[code=PHP][/code]
<?php
session_start();
?>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<?php if (empty($_SESSION[‘login’])) {
echo “<script>alert(‘你没有访问权限,请先登录!’);window.location.href=’../login/login1.php'</script>”;
exit;
}
else{
echo “<script>alert(‘欢迎光临!’);window.location.href=’../admin/index.php'</script>”;
}
?>
那个能帮我解决吗
——解决方案——————–
不停的剧新是在登陆之前还是之后?看看你login1.php的代码