Файл: tortuga/clans/index.php
Строк: 29
<?
include_once '../core/system.php';
echo only_reg();
echo ban();
$header = 'Кланы';
include_once '../core/head.php';
$k_post = mysql_result(mysql_query("SELECT COUNT(*) FROM `clans`"),0);
$q = mysql_query("SELECT * FROM `clans` ORDER BY `id` ASC");
if($k_post == 0)echo "<div class='player'>Клонов нет!</div><div class='mini-line'></div>";
echo "<div class='player menuList'>";
while($post = mysql_fetch_assoc($q)) {
echo "<li><a href='clan.php/$post[id]/'><img src='/images/icon/section.png'>$post[name] - $post[adm]</a></li>";
echo "<div class='dot-line'></div>";
}
echo "</div>";
$userid = $user[id];
$usclan = $user[clan];
if ($usclan == '') {
echo "<div class='line'></div><div class='player menuList'>";
echo "<li><a href='new_clan.php'><img src='/images/icon/arrow.png'>Создать клан</a></li>";
echo "</div>";
}else {
echo "";}
include_once '../core/foot.php';
?>