
<HTML> 
<HEAD> 
<title> 403 Forbidden Access</title> 
</HEAD> 
<BODY> 
<p align="center"> 

<h1>Error 403</h1><br>Forbidden Access 

<p>
<?php 

$ip = getenv ("REMOTE_ADDR"); 

$requri = getenv ("REQUEST_URI"); 
$servname = getenv ("SERVER_NAME"); 
$combine = $ip . " tried to load " . $servname . $requri ; 

$httpref = getenv ("HTTP_REFERER"); 
$httpagent = getenv ("HTTP_USER_AGENT");

$today = date("D M j Y g:i:s a T"); 

$note = "Yes you have been bagged and tagged for a making an illegal move!" ; 

$message = "$today \n 
<br> 
$combine <br> \n 
User Agent = $httpagent \n 
<h2> $note </h2>\n 
<br> $httpref "; 

$message2 = "$today \n 
$combine \n 
User Agent = $httpagent \n 
$note \n 
$httpref "; 

$to = "mohitsharma44@gmail.com"; 
$subject = "Citysynth Error Page"; 
$from = "From: mohitsharma44@gmail.com\r\n"; 

mail($to, $subject, $message2, $from); 

echo $message; 
?> 

</BODY></HTML>
