Large Image 15
16 of 41
Large Image 17
Indian Head Image

West Entry, No. B http://www.dltolleson/cameraone/bigbend2011_16.php

//using the date() function $time = date("F jS Y, h:i:s A", time () ); //$remote_addr is PHP variable to get ip address if (getenv(HTTP_X_FORWARDED_FOR)){ $ip=getenv(HTTP_X_FORWARDED_FOR); } else { $ip=getenv(REMOTE_ADDR); } //$http_referer is PHP variable to get referer $referer=$_SERVER[HTTP_REFERER]; //$http_user_agent is PHP variable for browser $browser=$_SERVER[HTTP_USER_AGENT]; //use the fopen() function $fp = fopen("../sitelog.htm", "a"); //using the fputs() function fputs($fp,"16 BIG BEND 2011.PHP • WEST ENTRY, NO. B • LARGE IMAGE
Date & Time: $time
IP: $ip
Referrer: $referer
Browser: $browser

"); //closing the function fclose($fp);