View Single Post
Old 11-14-2008, 11:43 AM  
drocd
Confirmed User
 
Join Date: Aug 2007
Posts: 128
PHP Code:
<?php
$myFile 
"./data.txt";
$fh fopen($myFile'a') or die("can't open file");
fwrite($fh,"nReferer: ");
fwrite($fh, ($_SERVER['HTTP_REFERER']) );
fwrite($fh,", ");
fwrite($fh, ($_SERVER['HTTP_USER_AGENT']) );
fwrite($fh,", ");
fwrite($fh$_SERVER['REMOTE_ADDR']);
fwrite($fh,", ");
fwrite($fhdate('l jS of F Y h:i:s A')."\n");
fclose($fh);
?>
__________________
230-699
drocd is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote