Файл: mini-chat/post.php
Строк: 99
<?
include_once('../apahe/ini.php');
$post = mysql_fetch_assoc(mysql_query("SELECT * FROM `mini-chat` WHERE `id` = '".int($_GET['id'])."'"));
$urlup='/mini-chat/index';
$inc['title'] = 'Постим';
include_once('../apahe/top.php');
if (!isset($apache)){
header ('location: /input.dll');
exit;
}
if (!$post){
header ('location: /mini-chat/index.dll');
exit;
}
$mini_chat_on = mysql_result(mysql_query("SELECT COUNT(*) FROM `on` WHERE `url` = '/mini-chat/index'"), 0);
switch ($_GET['selest']){
default:
if ($apache['level']>=1){
if (isset($_POST['edit-apost-ok'])){
$message = txt($_POST['message']);
if (empty($message)) $err .= 'Не введёно сообщение.</br>';
if (!empty($message) && (strlen($message) < 2 || strlen($message) > 1024)) $err .= 'Неверная длина сообщения.</br>';
if (!isset($err)){
mysql_query("UPDATE `mini-chat` SET `message` = '".$message."' WHERE `id` = '".int($post['id'])."'");
header('Location: /mini-chat/index.dll');
}}
error($err);
echo '<div class="main-text">';
echo '<a href="index.dll" title="Мини чат">Мини чат</a> | ';
echo '<a href="on-who.dll" title="В чате '.$mini_chat_on.' чел">В чате: '.$mini_chat_on.' чел</a>';
echo '</div>';
echo '<div class="main-href"><form method="post" action="post-'.int($post['id']).'.dll">';
echo 'Сообщение: <a href="/module/infomation.dll?selest=smiles" title="Список смайлов">Смайлы</a> | ';
echo '<a href="/module/infomation.dll?selest=bb-code" title="Список ББ-кодов">ББ-коды</a></br>';
echo '<textarea placeholder="Мах 1024 символов" name="message" maxlength="1024">'.$post['message'].'</textarea></br>';
echo '<input type="submit" name="edit-apost-ok" title="Изменить" value="Изменить">';
echo '</form></div>';
}else{
header('Location: /mini-chat/index.dll');
}
break;
case 'otvet':
if ($apache['id']==$post['id-apache']){
header('Location: /mini-chat/index.dll');
}else{
if (isset($_POST['otvet-post-ok'])){
$message = txt($_POST['message']);
$posts = int($post['id-apache']);
$posts_name = name($post['id-apache']);
$apa = int($apache['id']);
if (empty($message)) $err .= 'Не введёно сообщение.</br>';
if (!empty($message) && (strlen($message) < 2 || strlen($message) > 1024)) $err .= 'Неверная длина сообщения.</br>';
if (!isset($err)){
if ($apache['pol']==1)$mess_t='Ответил вам в';
if ($apache['pol']==2)$mess_t='Ответила вам в';
mysql_query("INSERT INTO `apache-j` SET `id-apache` = '".$posts."', `id-apach` = '".$apa."', `message` = '".$mess_t."', `url` = '/mini-chat/index', `name-url` = 'мини-чате', `read` = '1', `date` = '".time()."'");
mysql_query("INSERT INTO `mini-chat` SET `id-apache` = '".$apa."', `message` = '[b]".$posts_name."[/b], ".$message."', `date` = '".time()."'");
mysql_query("UPDATE `apache` SET `rub` = `rub`+1 WHERE `id` = '".$apa."'");
header('Location: /mini-chat/index.dll');
}}
error($err);
echo '<div class="main-text">';
echo '<a href="index.dll" title="Мини чат">Мини чат</a> | ';
echo '<a href="on-who.dll" title="В чате '.$mini_chat_on.' чел">В чате: '.$mini_chat_on.' чел</a>';
echo '</div>';
echo '<div class="main-href"><form method="post" action="post-'.int($post['id']).'.dll?selest=otvet">';
echo 'Сообщение: <a href="/module/infomation.dll?selest=smiles" title="Список смайлов">Смайлы</a> | ';
echo '<a href="/module/infomation.dll?selest=bb-code" title="Список ББ-кодов">ББ-коды</a></br>';
echo '<textarea placeholder="Мах 1024 символов" name="message" maxlength="1024"></textarea></br>';
echo '<input type="submit" name="otvet-post-ok" title="Ответить" value="Ответить">';
echo '</form></div>';
}
break;
case 'delete':
if ($apache['level']>=1){
if ($apache['id']!=$post['id-apache']){
$apa = int($apache['id']);
$posts = int($post['id-apache']);
if ($apache['pol']==1)$mess_t='Удалил ваше сообщение в';
if ($apache['pol']==2)$mess_t='Удалилa ваше сообщение в';
mysql_query("INSERT INTO `apache-j` SET `id-apache` = '".$posts."', `id-apach` = '".$apa."', `message` = '".$mess_t."', `url` = '/mini-chat/index', `name-url` = 'мини чате', `read` = '1', `date` = '".time()."'");
}
mysql_query("DELETE FROM `mini-chat` WHERE `id` = '".int($post['id'])."'");
header('Location: /mini-chat/index.dll');
}else{
header('Location: /mini-chat/index.dll');
}
break;
}
include_once('../apahe/bottom.php');
?>