Файл: DARK WARS/dark_war/forum/index.php
Строк: 14
<?php
include_once '../start.php';
$doc = new document();
$doc->title('Форум');
$q=mysql_query("SELECT * FROM `dark_war_forum`");
while ($post = mysql_fetch_array($q)) {
$list = $post['name'];
$img = '/dark_war/all_img/forum/forum.png';
$link = "category.php?id=" . $post['id'] . "";
$descrip = $post['description'];
$dispatch[] = array ('title' => $list, 'img' => $img, 'link' => $link, 'descrip' => $descrip, 'ico_size' => 32);
}
if (!$dispatch) {
$dispatch[] = array ('title' => 'Нет подфорумов');
}
$doc->assign('post', $dispatch);
$doc->display('view_list_plus_img.tpl');
if ($player->admin > 1) {
$doc->act("forum_new.php", 'Новый подфорум');
}
?>