- Joined
- Feb 14, 2008
- Messages
- 303
- Reaction score
- 41
if anyone can help please?
I need to do a page where you can ban ip
I have this code
but do not know how to make a page where I type the ip and deve where you go = (
I hope someone can help me
Does not matter that any user can enter it as escondere the folder and file
i search but only found ban of accounts and i want ban ip
I need to do a page where you can ban ip
I have this code
Code:
<?
//Message that the banned one will get:
$msg_ban = "This ip is banned ur not restricted to this page ~ Rodi for more contact us at [email protected]";
//Put here the ip's that u wanna ban
$ipadr[0] = "";
$ipadr[1] = "";
$ipadr[2] = "";
$ipadr[3] = "";
$ipadr[4] = "";
$ipadr[5] = "";
$ipadr[6] = "";
$ipadr[7] = "";
//U can put more ipban's if u put those line's with evertime a diferent number:
//$ipadr[3] = "ipadreshier";
$aantal = count($ipadr);
$ipuser = $_SERVER['REMOTE_ADDR'];
for($i=0; $i<=$aantal; $i++)
{
if($ipuser == "$ipadr[$i]")
{
echo "$msg_ban";
exit;
}
}
?>
but do not know how to make a page where I type the ip and deve where you go = (
I hope someone can help me
Does not matter that any user can enter it as escondere the folder and file
i search but only found ban of accounts and i want ban ip