Jump to content

Blocking IP addresses


sford999

Recommended Posts

I`m looking to block some spammers IP addresses from a couple of my sites pages but haven`t had much luck so far.

This is the code I`ve tried:

[code]$ip = $_SERVER["REMOTE_ADDR"];

if($ip == 123.123.123.123 || 132.132.132.132 || 231.231.231.231)
{
    include ("header.inc");
    include ("menu.inc");
    echo "<br /><strong>Sorry, but your IP address has been blocked, if you feel this is an error, please contact the site administrator.</strong><br />";
    include ("footer.inc");
    exit();
}
else
{

// other code here

}
[/code]

The code just continues as normal, without stopping me from accessing the page content. I`ve got 2 seperate fixed IP addresses (2 different ISP`s) and when i add them to the list of blocked IP`s it doesn`t work.
Can anyone advise a fix?

Thanks in advance
Link to comment
https://forums.phpfreaks.com/topic/10349-blocking-ip-addresses/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.