Вот файл add_news.php
<?php
// Подключаем Samrty
require('../libs/Smarty.class.php');
// Подключаем Базу Данных
require('../libs/data/dbconnect.php');
// Создаем объект класса Smarty
$smarty = new Smarty;
// Задаем настройки Smarty
//$smarty->force_compile = true;
//$smarty->debugging = true;
$smarty->caching = true;
$smarty->cache_lifetime = 120;
// Устанавливаем значение переменной Title
$smarty->assign("title", "КиноПоиск. Добавление новости.");
// Выводим шаблон
$smarty->display('add_news.tpl');
if (isset($_POST['ok']))
{
if (isset ($title) && isset ($text1) && isset ($text2) && isset ($photo))
{
$title=$_POST['title'];
$text1=$_POST['text1'];
$text2=$_POST['text2'];
$photo=$_POST['photo'];
$query = "INSERT INTO `st_news` (`title`, `text1`, `text2`, `photo`)
VALUES ( '$title', '$text1', '$text2', '$photo') ";
if ($query == 'true')
{
echo "<p>Вы внесли запись </p> ";
}
else
{
echo "<p>Вы не внесли запись </p> ";
}
}
}
?>
Вот файл add_news.tpl
{include file="header.tpl" title={$title}}
<form actions="/admin/add_news.php" method="POST">
<input type="text" name="title" />
<input type="text" name="text1" />
<input type="text" name="text2" />
<input type="text" name="photos" />
<input type="submit" name="ok" value="Добавить" />
</form>
таким способом не идет запись в бд., подскажите мне пожалуйста.... может что-то не так...??
_____________
PRchik.ru | Раскрутись и заработай!