특정파일에서 연타방지 (급한대로..)
페이지 정보
본문
$agentfile = "현재파일명";
$Chktime = mktime();
if($HTTP_COOKIE_VARS[chkfile] == $agentfile && ($Chktime - $HTTP_COOKIE_VARS[chktime]) <= 2){
setcookie("chktime","",0,"/");
echo"
<script>
alert('경고문.!');
location.reload();
</script>
";
exit;
}
setcookie("chkfile",$agentfile,0,"/");
setcookie("chktime",$Chktime,0,"/");
<-- 자작소스 ........ 재대로 될려나.....
$Chktime = mktime();
if($HTTP_COOKIE_VARS[chkfile] == $agentfile && ($Chktime - $HTTP_COOKIE_VARS[chktime]) <= 2){
setcookie("chktime","",0,"/");
echo"
<script>
alert('경고문.!');
location.reload();
</script>
";
exit;
}
setcookie("chkfile",$agentfile,0,"/");
setcookie("chktime",$Chktime,0,"/");
<-- 자작소스 ........ 재대로 될려나.....
- 이전글간단한 카운트 21.02.09
- 다음글사이트외부에서 링크를 할수없게 하려면 21.02.09
댓글목록
등록된 댓글이 없습니다.