Размер файла: 757B
<?php
require_once($_SERVER['DOCUMENT_ROOT'].'/system/App.php');
if ($sys->isAjax())
{
$message = !empty($_POST['message']) ? $sys->protect($_POST['message']) : null;
if (empty($message))
{
$json = [
'error' => 1,
'comment' => 'Введите текст сообщения',
];
}
else
{
if ($chat->addMessage($message))
{
$json = [
'success' => 1,
'comment' => 'Сообщение успешно отправлено',
];
}
else
{
$json = [
'error' => 1,
'comment' => 'Ошибка отправки сообщения',
];
}
}
}
else
{
$json = [
'error' => 1,
'comment' => '404 Bad Request',
];
}
echo json_encode($json, JSON_UNESCAPED_UNICODE);