Файл: status.php
Строк: 37
<?php
include 'inc/mysql.php';
include 'inc/check.php';
include ("inc/gzip.php");
if(isset($_SESSION['auth']) && $_SESSION['auth']==1){
include 'inc/shapka.php';
if (('chat_clear') && isset($_GET['act']) && $_GET['act']=='clear1') { echo"<font color=LightCoral>Длина статуса может содержать от 3 до 250-ти рус. или латин. символов.</font><hr>"; }
if(empty($_POST[msg])){
echo"Статус, не более 250 символов:<br/>";
echo '<form name="form" action="status.php" method="post">'.bbpanel('form', 'msg').'<textarea name="msg" cols="30" rows="1"></textarea>';
echo ' <br><input class="button" type="submit" value="Обновить статус" /></form>';
}else{
$faq = mysql_query("SELECT * FROM `config`");
$base = mysql_fetch_array($faq);
if($account[lvl]<$base[mail_vik]){
echo"<img src='/pic/main/!.png' alt='*'/> Писать cтатусы доступно с $base[mail_vik] уровня.";
}else{
$msg=htmlspecialchars($_POST[msg]);
include ("inc/antireklama.php");
if(mb_strlen($msg,'utf-8') < 3) { header("Location: status.php?act=clear1"); exit; } if(mb_strlen($msg,'utf-8') > 250) { header("Location: status.php?act=clear1"); exit; }
mysql_query("UPDATE `account` SET `status_pers`='$msg' WHERE `id`='".$account['id']."'");
echo "<img src='/pic/main/!.png' alt='*'/> Статус успешно обновлён.";
}}
}else{
header ("Location: index.php"); exit;
}
include 'inc/nogi.php';
?>