Файл: tjersy.worldbyte.net/admin/news.php
Строк: 31
<?php
require_once '../inc/system.php';
require_once '../inc/head.php';
no_auth();
if($user['prava'] == '2') header('Location:/');
if(isset($_POST['TJ'])){
$msg = check($_POST['msg']);
$time = time();
if(empty($msg)){ error('Введите сообщение');
}else{
mysql_query("INSERT INTO `news` SET `msg` = '$msg', `time` = '$time'") or die(mysql_error());
header('Location:/profile');
}
}
echo '<div class="top-tit"><div class="tit-t">Добавить новость</div></div>
<div class="vh">
<br>
<script charset="utf-8" src="../inc/functions/js.js" type="text/javascript"></script>
<form action="" method="POST" name="message">
<center> Введите сообщение:<br/>';
echo '
<textarea name="msg" placeholder="Введите сообщение..."></textarea> ';?>
<center>
<a href="javascript:tag(':01:', '')"><img src="/style/img/smail/1.png" alt="*" /></a>
<a href="javascript:tag(':02:', '')"><img src="/style/img/smail/2.png" alt="*" /></a>
<a href="javascript:tag(':03:', '')"><img src="/style/img/smail/3.png" alt="*" /></a>
<a href="javascript:tag(':04:', '')"><img src="/style/img/smail/4.png" alt="*" /></a><br>
<a href="javascript:tag(':05:', '')"><img src="/style/img/smail/5.png" alt="*" /></a>
<a href="javascript:tag(':06:', '')"><img src="/style/img/smail/6.png" alt="*" /></a>
<a href="javascript:tag(':07:', '')"><img src="/style/img/smail/7.png" alt="*" /></a>
<a href="javascript:tag(':08:', '')"><img src="/style/img/smail/8.png" alt="*" /></a>
<a href="javascript:tag(':09:', '')"><img src="/style/img/smail/9.png" alt="*" /></a>
</center>
<?
echo '<br/>';
echo '
<input type="submit" name="TJ" value ="Отправить"> </form></div><br/>';
require_once '../inc/foot.php';
?>