How do i get info besides the ip address, i can already get that,
cant you get the isp and the browser type? :confused: im just now getting to learn php :(
Printable View
How do i get info besides the ip address, i can already get that,
cant you get the isp and the browser type? :confused: im just now getting to learn php :(
You can't get the ISP, but you can get the browser type. I think it's in $_SERVER['USER_AGENT'] or something like that. That's the UA identification string. Note that most browsers allow the client to set this to whatever they want, so it's unreliable.
check out this sig i think its written in php, just this much info would be cool
http://www.danasoft.com/vipersig.jpg
That signature uses the HTTP_USER_AGENT string your browser sends.
It will typically look like this:
Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6) Gecko/20040210 Firefox/0.8
Well thats my user agent string generated by Firefox.
Windows NT 5.0 = Windows 2000 and the rest speaks for its self.
If a browser hits a php script can it echo the last website you visited?
Take a look at the it has all the server variable that you can use in php. That should be enough for you to gather all the information you need about the person viewing the page.
http://www.php.net/manual/en/reserve...riables.server
Thanks for the link