Forum Moderators: open
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.
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>