Little Spy
This script will return the url of the referring page, IP address of the visitor, browser type and version and
the webserver that processed the request.
<?php
$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>";
?>