<?
/*
Homepage.............: http://maran.pamil-visions.com / http://maran-emil.de
Released.............: 12.09.2006
Created by...........: Emil Maran (maran-emil.de)
Release type.........: Script PHP/mySQL
Price................: Freeware
Version..............: 1.0 Beta
Contact..............: hide@address.com
----------------------------------------------------------------------------------*/
?>
<?
$banlist = "85.255.119.74";
if(strstr($REMOTE_ADDR,$banlist)){die('you are banned...i guess....');}
?>
<? if($_POST['checkcode1']!=$_POST['checkcode2']){echo "wrong code!"; exit;}?>
<?
$id = $_POST['id'];
$yourname = $_POST['yourname'];
$yourcomment = $_POST['yourcomment'];
$yourcomment = str_replace("\r\n","<br>",$yourcomment);
$data = date("d.m.Y");
if(($_POST['action']=="yes")&&(!empty($_POST['id']))){
$ip = $REMOTE_ADDR;
$ir = getHostByAddr($REMOTE_ADDR);
$fp = fopen("comments.db","a");
$line = "#$id#$yourname#$yourcomment#$data#$ip#$ir \r\n";
fwrite($fp,$line);
$ipadress = $_SERVER['REMOTE_ADDR'];
$fp = fopen("ipspam.db","a");
$line = "#$id#$ipadress#$data \r\n";
fwrite($fp,$line);
echo "<script>alert('message has been recorded! thank you :)')</script>";
echo "<script>location.replace('view.php?id=$id')</script>";
}
else {
echo "<script>alert('message has not been recorded!')</script>";
echo "<script>location.replace('comments.php')</script>";
}
?>