I have this simple script that logs ips that visit my site in a local file.
PHP Code:
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$page = $_SERVER['REQUEST_URI'];
$date = date("d-m-y / H:i:s");
$all = $dae . " - " . $ip . " - " . $page . "<br />";
$fopen = fopen("ips.txt", "a");
fwrite($fopen, $all);
fclose($fopen);
?>
hxxp://legacytools.dnsstuff.com/tools/ipall.ch?ip=x.x.x.xwhere x.x.x.x the ip that visits my site. Is it possible ? If yes.. please help me...
Thanks ..!!

