| Romance Of Love | 10-12-2007 08:30 AM | (PHP) Ban Ip From Your Site It is one of the effective code for banning the IP address from your website.
Just paste the codeinto your PHP page. PHP Code: <?php
// This will retrieve ip!
$ip = getenv('REMOTE_ADDR');
// Replace 'x' with ip address!
$blocked = "xx.xx.xx.xx";
if (ereg($blocked,$ip))
{
echo "You Have Been Banned";
exit();
}
?> 'echo "You Have Been Banned";'
this is the message which will be displayed when the banned ip goes on the page. Remember to swap the x's with the IP you wish to ban. |