<?php
////////////////////////////////////////////////////////////////////////////
// -_- W|W PHP-master -_- //
// //
// Copyright 2008 MyIE //
// Create and Design by -_- MyIE //
// Site (web) -_- http://www.phpedited.com //
// Site (wap) -_- http://wap.phpedited.com //
// E-mail (MyIE) -_- [email protected] //
// ICQ (MyIE) -_- 952-11-78 //
// //
// Вы не имеете право убирать копирайт //
// оффициального сайта! //
//This program is free software: you can redistribute it and/or modify //
//it under the terms of the GNU General Public License as published by //
//the Free Software Foundation, either version 3 of the License, or //
//(at your option) any later version. //
// //
//This program is distributed in the hope that it will be useful, //
//but WITHOUT ANY WARRANTY; without even the implied warranty of //
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
//GNU General Public License for more details. //
// //
//You should have received a copy of the GNU General Public License //
//along with this program. If not, see <http://www.gnu.org/licenses/>. //
////////////////////////////////////////////////////////////////////////////
require_once"../tmpl/function.php";
require_once"../tmpl/cnf.php";
require_once"../tmpl/ses.php";
$msg=$_POST['msg'];
$name=$_GET['name'];
$name = trim($name);
$msg = trim($msg);
if (empty($name)) // если не введено сообщение
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = 'index.php?action=noname'");
?>
// -->
</script>
<?php
exit;
}
if (empty($msg)) // если не введено сообщение
{
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = 'index.php?action=nomsg'");
?>
// -->
</script>
<?php
exit;
}
$name = htmlspecialchars(stripslashes($name)); // обрабатываем имя
$msg = htmlspecialchars(stripslashes($msg)); // обрабатываем сообщение
$msg = str_replace("\n","[br]",$msg);
// создание нового файла и последущее его закрытие
$file = fopen("../lcl/gb/rec.".time(),"w+");
fputs($file,$name."\n");
fputs($file,$msg."\n");
fputs($file,$ip."\n");
fclose($file);
anketa_gb_plus($log);
?>
<script language="JavaScript">
<!--
<?php
echo ("window.location.href = 'index.php?action=msggo'");
?>
// -->
</script>