PHP Code:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$client = gethostbyaddr($_SERVER['REMOTE_ADDR']);
$str = preg_split("/\./", $client);
$i = count($str);
$x = $i - 1;
$n = $i - 2;
$isp = $str[$n] . "." . $str[$x];
$content = "<div align=\"center\"><font size=\".1\">Your ip is tracked:<br> $ip<br>Your ISP:<br> $isp<br>Any fraudulent action will be prosecuted.</div>";
?>
Don't say I never post anything useful
