Файл: DARK WARS/dark_war/clans/demand/demand.php
Строк: 22
<?php
include_once '../../start.php';
$doc = new document();
$doc->title('Вступление в клан.');
$id = (int)$_GET['id'];
$count_d = mysql_query("SELECT `id_player` FROM `dark_war_clan_demand` WHERE `id_clans` = '$id' AND `read` = '0'");
while ($post = mysql_fetch_array($count_d)) {
$ank = new player($post['id_player']);
$list = $ank->name;
$link = "../../profil.php?id=" . $ank->id . "";
//$dispatch[] = array ('title' => $list, 'link' => $link, 'ico_size' => '32');
$dispatch[] = array ('one' => '<a href ="'.$link.'">'.$list.'</a>', 'two' => '<a href="vote.php?id='.$id.'&viwe=good&id_player='.$post['id_player'].'">Принять</a> <a href="vote.php?id='.$id.'&viwe=bad&id_player='.$post['id_player'].'">Отвергнуть</a>');
}
//Шаблон страницы
$doc->assign('post', $dispatch);
$doc->display('view_two_table.tpl');
?>