What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Tech Talk » Blocking an IP

Blocking an IP
Author: Message:
stonesour
Full Member
***

Avatar
Posts: 901231

Posts: 205
35 / Male / –
Joined: Nov 2003
RE: Blocking an IP
I use this

code:
<?php


function ip_check()
{
    // Addresses to block.
    $block_ip[] = '203.217.64.174';
    // Check current IP.
    if (in_array($_SERVER['REMOTE_ADDR'], $block_ip))
    {
        return false;
    }
    else
    {
        return true;
    }
}
?>


Then in your index file or whatever put this include
code:
<?php    include 'bannedip.php';    if (!ip_check())   
{     
header( "Location: http://ng.audiodragon.net/bannage.php");
}
?>


Change the header location bit to the redirect site, bannedip.php to the name of your script.

You can also just display text using the echo command..
04-10-2004 06:43 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Blocking an IP - by DJeX on 04-09-2004 at 09:45 PM
RE: Blocking an IP - by Digirat on 04-09-2004 at 09:58 PM
RE: Blocking an IP - by sock on 04-10-2004 at 02:27 PM
RE: Blocking an IP - by Wabz on 04-10-2004 at 04:18 PM
RE: Blocking an IP - by DJeX on 04-10-2004 at 04:34 PM
RE: Blocking an IP - by Anubis on 04-10-2004 at 04:37 PM
RE: Blocking an IP - by reisyboy on 04-10-2004 at 04:40 PM
RE: Blocking an IP - by sock on 04-10-2004 at 05:28 PM
RE: Blocking an IP - by Anubis on 04-10-2004 at 05:36 PM
RE: Blocking an IP - by stonesour on 04-10-2004 at 06:43 PM
RE: Blocking an IP - by sock on 04-10-2004 at 08:04 PM
RE: Blocking an IP - by reisyboy on 04-10-2004 at 08:34 PM
RE: Blocking an IP - by CookieRevised on 04-11-2004 at 02:49 AM
RE: Blocking an IP - by DJeX on 04-11-2004 at 03:35 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On