How to elicit user’s information when he/she is visiting your website?
- IP Address
- Mac Address
- User Profile Name
- OS Name
- OS version
- OS Registered to (Name/Company)
- Computer Name
- Browser Name
- Browser Version
- ISP Name/Internet Connection Provider Name
- Connection Type
- Location – City/Country (based on IP)
The answer to most of what you’re asking is either ‘impossible’, ‘impossible with javascript, use ajax to get it from the server-side’, or ‘parse the user string’ (which can always be spoofed).
$_SERVER['REMOTE_ADDR']shell_exec("whois $_SERVER['REMOTE_ADDR']"); that would return the whois record for that IP address, which you can parse to get an ISP.