Hello, I have a site about a game and i need if there is some code that helps me to anti-flood, please.thanks!
if anyone can help me I would greatly appreciate
This it's good?
<?PHP
IF (!ISSET($_SESSION)) {
SESSION_START();
}
// anti flood protection
IF($_SESSION['last_session_request'] > TIME() - 2){
// users will be redirected to this page if it makes requests faster than 2 seconds
HEADER("location: /flood.html");
EXIT;
}
$_SESSION['last_session_request'] = TIME();
?>