I need help

Status
Not open for further replies.

MacMaster64

Baseband Member
Messages
100
I as some of you may know I own a forum and I have an unruley person that won't register and works as a guest and all I have is an IP address. I need a free website that will give me IP information such as E-mail or username and ISP I would like most an E-mail address or a way to contact the said person



Thanks
 
Add something like the following to index.php, assuming the forums are PHP:

PHP:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$guest = "<ip>";
if($ip == $guest)
{
echo "Please contact <email>";
exit;
}
?>

... kinda mean, but still. There's not many other options.
 
Status
Not open for further replies.
Back
Top Bottom