Is this possible

I was wondering if there is a code or script someone could post for me that when someone visits a certain page I can have something that displays their ip address, their service provider and what operating system they are using?

Can anyone help me out?

Thanks

Umm… If you ind the ip and you actually know how to subnet through it to find out the ISP… You’ve got a pretty hefty program…

But it’s not likely to happen buddy… :wink:

IP-Yes ISP-No OS-Yes.

there are free tracking services too. All you need to do is put their little icon in the page you want to track and the loading of that icon captures that information and saves it to a table which you can reference from the services main site.

search for trackers on google (or something to that effect) and Im sure you’ll find somehting

http://www.gostats.com

it’s a free web counter that records their ip address, browser version, os, etc…

the only thing it doesn’t do really is record the internet service provider…but sometimes you can find out anyway. besides recording their ip address, it also records other information. for instance, if i visited the page it would say something like

mh502002.truman.edu
150.243.177.84

the top part would tell me the person was from truman state university.

it’s worth a shot :slight_smile:

-teet

is there a php tag for that

you can get a lot out of what PHP can provide for you by making a php page and calling phpinfo() (in php). That will give you version and environment variables etc - including viewers IP and whatnot.

didn’t know that it also prints the IP. Thanks

To get the ISP, you need to do a reverse DNS lookup and then parse the hostname to find the ISP.

To get the OS, you need to look in HTTP_USER_AGENT.

Here’s some code to get you started:


<?php
$ipaddr = $_SERVER['REMOTE_ADDR'];
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);

$agent = $_SERVER['HTTP_USER_AGENT'];
$platform = 'Unknown OS';
if (eregi("win", $agent)) $platform = "Windows";
elseif (eregi("mac", $agent)) $platform = "Macintosh";
elseif (eregi("linux", $agent)) $platform = "Linux";
elseif (eregi("OS/2", $agent)) $platform = "OS/2";

echo "$ipaddr - $hostname - $platform";
?>

thanks, the $_SERVER[‘REMOTE_ADDR’] was exactly what I was looking for!

Kein problem, McG.

Glad I could help.