|
Home All Articles Contact Zawgyi Myanmar Font |
|
Home >> Snippet List >> Snippet Name Anti-Flood ProtectionDescription This script will redirect the user when he or she makes too many requests on your site
Paste this code at the very beginning of your header code, above any MySQL connections or other PHP codePHP Snippet <?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(); ?> |
|
All photograph,logos, articles, comments and trademarks etc, in this site are property of their respective owners.All the rest (c) 2006 by PhpMyanmar.com. |