Large Image 41
42 of 66
Large Image 43
Self Portrait Image

Self Portrait BBNP, No. 10B http://www.dltolleson/cameraone/bigbend2010_42.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,"42 BIG BEND 2010.PHP • SELF PORTRAIT BBNP, NO. 10B • LARGE IMAGE
Date & Time: $time
IP: $ip
Referrer: $referer
Browser: $browser

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