Файл: forum/search.php
Строк: 22
<?
include_once('../apahe/ini.php');
$urlup='/forum/index';
$inc['title'] = 'Форум - поиск';
include_once('../apahe/top.php');
if (!isset($apache)){
header ('location: /input.dll');
exit;
}
$forum_s = mysql_fetch_assoc(mysql_query("SELECT * FROM `forum-s` WHERE `id` = '1'"));
echo '<div class="main-text">';
echo '<a href="index.dll" title="Форум">Форум</a>';
if (isset($_POST['seo']) and !empty($_POST['seo'])){
echo ' | <a href="search.dll" title="Искать еще">Искать еще</a>';
echo '</div>';
}else{
echo '</div>';
echo '<div class="main-href"><form method="POST" action="search.dll">';
echo 'Что будем искать:</br>';
echo '<input type="text" name="seo" maxlength="128"/></br>';
echo '<input type="submit" title="Искать" value="Искать"/>';
echo '</form></div>';
}
//nav_start($total, $forum_s[tf]);
include_once('../apahe/bottom.php');
?>