IP sniffer script


This PHP IP sniffer script will sniff your visitors IP address and system specs and e-mail the info to you without notifying your visitors.





Below are two possable ways to launch this script.



<html>
<head>      
<title>Your page</title>
</head>     
<body>      
Your page content here...   



<?php include('ipSnifferScript.php'); ?>



</body>
</html>


Just remember, however you include the code, the HTML page's extension will have to be changed to .php (or .phtml). If you want you can also use an <iframe> tag to load the PHP file like so: (NOTE: page with the <iframe> tag can have a .html extension). For an example of a script that uses an iframe tag see the 'Photo of the day' script in the PHP > Miscellaneous section.

<iframe src="ipSnifferScript.php" width=0 height=0></iframe>


Click here to go back.