Forum Moderators: open

Message Too Old, No Replies

IP & OS Script

         

sladestein

4:22 pm on Oct 5, 2004 (gmt 0)



Hi All,

I am looking for a script that will show to a visitor the following information about their PC.

- IP Address
- Browser
- Machine Type (Mac or PC)
- Operating Sytem
- ISP
- Anything else!

Many thanx in advance.

DrDoc

9:49 pm on Oct 5, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to WebmasterWorld! [WebmasterWorld.com]

May I suggest a Google Search [google.com]?

There are hundreds of ways of gathering such data, depending on how detailed it needs to be. For the most basic tasks, JavaScript may prove sufficient. But, for more advanced information you need to use a server side script as well.

<script type="text/javascript">
document.write("User Agent: " + navigator.userAgent + "<br>Protocol: " + location.protocol + "<br>Browser family: " + navigator.appCodeName + "<br>Browser: " + navigator.appName + "<br>Java enabled: " + navigator.javaEnabled() + "<br>")
</script>