Файл: plans.php
Строк: 22
<?php
include_once("files/zag.php");
include_once("files/ini.php");
$polz=mysql_query("SELECT * FROM `users` WHERE `udata0`='$log' AND `udata1`='$pas' LIMIT 1");
if(mysql_num_rows($polz)==0){
header ("Location: index.php?error");
echo'<div class="p">Ошибка! Пользователь с таким логином и паролем не зарегистрирован, или пароль/логин неверен! <a href="index.php">На главную</a><br>';exit;
}else{
if($go == 'add')
{
mysql_query("UPDATE `plans` SET `text`='$text' ");
echo'Обновлено';
}
$pln=mysql_query("SELECT * FROM `plans` ");
$plns= mysql_fetch_array($pln);
$txt=$plns['text'];
echo '<form action="?&go=add" method="POST">
Введите сообщение:<br/>
<textarea name="text" rows="20" cols="50">'.$txt.'</textarea><br/>
<input type="submit" value="Добавить" /></form>- - -<br>';
}
include_once"files/down.php";
?>