Файл: blog/add.php
Строк: 71
<?php
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
only_reg();
$set['title']='Дневники-Добавление';
include_once '../sys/inc/thead.php';
title();
aut();
if (isset($_GET['add']) && isset($_POST['name']) && $_POST['name']!=NULL && isset($_POST['msg']))
{
$msg=mysql_real_escape_string($_POST['msg']);
$name=mysql_real_escape_string($_POST['name']);
if (strlen2($name)<3)$err='Короткое название';
if (strlen2($name)>50)$err='Длина названия превышает предел в 50 символов';
if (strlen2($msg)<3)$err='Короткий Текст';
if (strlen2($msg)>3000)$err='Длина текста превышает предел в 1024 символа';
$name = htmlspecialchars(trim($_POST['name']));
$msg = htmlspecialchars(trim($_POST['msg']));
if (!isset($err))
{
$sql = mysql_query("INSERT INTO `blog_list` (`id_user`, `name`, `msg`, `time`, `privat`) values('$user[id]', '$name', '$msg', '$time', '$privat')");
if ($sql) {
$id_b = mysql_insert_id();
header('Location: list.php?id='. $id_b);
}
}
}
err();
echo "<form class='foo0t' method='post' action='?add'>n";
echo "Название:<br />n<input type="text" name="name" value="" /><br />n";
echo "Текст: <br />";
echo "<textarea name="msg"></textarea><br />";
echo "<input value="Добавить" type="submit" />n";
echo "</form>n";
echo "<img src='/style/Back.gif' alt='' class='icon'/> <a href='index.php'>Дневники</a><br />n";
include_once '../sys/inc/tfoot.php';
?>