- Impact
- 18
Spy for your visitors...
save this code as a .php file and upload on ur server... u can include this file on ur any page.... if html than vai iframe or if php than via inlcude tag
save this code as a .php file and upload on ur server... u can include this file on ur any page.... if html than vai iframe or if php than via inlcude tag
PHP:
<?php
/*THIS SCRIPT IS FREE TO USE
PLEASE DONT REMOVE THIS NOTICE
Distributed by dotcommakers.com*/
$url= $HTTP_REFERER;
$ip = $REMOTE_ADDR;
$browser= $HTTP_USER_AGENT;
$server = $SERVER_NAME;
print "Web page you came from : $url<br>";
print "Your IP Address : $ip<br>";
print "Your Browser : $browser<br>";
print "Webserver : $server<br>";
?>




