//Information Recorder v1.0
//Author: JOE PERES, A JAVA JOES PRODUCTION
// Gets IP address
//$ip = getenv("REMOTE_ADDR");
//Gets Browser And OS
//$info = getenv("HTTP_USER_AGENT");
//Gets Date In day month year form
//$date = date("d M, Y");
//Gets Time
//$time = date("g:i a");
//$time = date("H:i:s");
//$urll = getenv("PATH_INFO");
//$host = gethostbyaddr($ip);
//Names The File
//$file = "info.txt";
//Opens and/or Creates The File
//$newFile = @fopen($file, "w");
//The Message Lets the User Know what Info u have
//$msg = " $urll, $date, $time: $info";
//$subj = "en-arr $ip, $host";
// echo "Big Brother 's watching you, $host!";
// @fwrite($newFile, $ip, $info, $date, $time);
// @fclose($newfile);
//mails the Info
//mail("postmaster@alaport.com", $subj, $msg);
?>