Ip logging script help

Light Poster
29Sep2009,01:59   #1
netpumber's Avatar
Hallo guyz!! Im new here.. and im new in php coding.. So...

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);
?>
Now i want to add something more in this log file. I want to add the result of this link:

hxxp://legacytools.dnsstuff.com/tools/ipall.ch?ip=x.x.x.x

where x.x.x.x the ip that visits my site. Is it possible ? If yes.. please help me...

Thanks ..!!
Go4Expert Founder
29Sep2009,11:31   #2
shabbir's Avatar
If you want the content of that page then you can use the fsockopen to get the content of the url but if you want them parse them use API or else too many query and they may ban your ip
Light Poster
29Sep2009,13:49   #3
netpumber's Avatar
Ok... Thanks...for your answer..

Lets say that it has logs some ips...Can i make the script to send the results in my email account ?
Newbie Member
5Oct2009,05:51   #4
mayz's Avatar
Try the IP logging script at
--1afm.net/scripts/catscript.php?catid=15--
If you want it to email the IP to your email address add the following code below the script:
$to = "info@youremail.com";
$subject = "IP ADDRESS FROM YOUR SITE";
$body = "Hi,\n\nA new IP addresss is " .$user_ip ;
if (mail($to, $subject, $body)) {
echo("<p>IP logged</p>");
} else {
echo("<p></p>");
}