Файл: pages/soo/wall.php
Строк: 14
<?php
/*
author: SBeka
http://masteram.us/id580
*/
include ('../../system/mysql.php');
include ('../../system/sys_func.php');
if (!isset($user)) {
header('Location: ../../index.php');
exit;
}
$idGroup = intval($_GET['id']);
if (isset($_POST['sendWall'])) {
$msgWall = trim(htmlspecialchars(mysql_real_escape_string($_POST['msg'])));
$error = false;
$errort = '';
if (strlen($msgWall) < 1) {
$error = true;
$errort .= '<div class="err">Длина сообщения должна быть не менее 1-ого символа.</div>';
} elseif (strlen($msgWall) > 1000) {
$error = true;
$errort .= '<div class="err">Длина сообщения должна быть не более 1000 символов.</div>';
}
if (!$error) {
mysql_query("INSERT INTO `wall` SET `group_id`='$idGroup', `write_id`='".$user['id']."', `razdel`='group_wall', `text`='$msgWall', `date`='".time()."'");
header("Location: group.php?id=".$idGroup."");
exit;
}else{
$title = 'Стена';
include ('../../system/head.php');
echo $errort;
}
} else {
$title = 'Ошибка';
include ('../../system/head.php');
echo '<div class="err">Упсс! Ошибка!</div>';
}
foot();
?>