2018-01-28 18:40:49 +02:00
|
|
|
|
<?php
|
2020-09-30 01:39:06 +03:00
|
|
|
|
require_once "config.php";
|
|
|
|
|
$tr = mysql_fetch_array(mysql_query("SELECT `id`, `coin`, `log` FROM `deztow_turnir` WHERE `id` = '" . mysql_real_escape_string($_GET['id']) . "' LIMIT 1"));
|
2020-09-30 22:12:34 +03:00
|
|
|
|
Template::header('Башня смерти. Отчет о турнире #'. $tr['id']);
|
|
|
|
|
echo sprintf('<h3>Башня смерти. Отчет о турнире.</h3><b>%s</b> кр.<br>%s', $tr['coin'], $tr['log']);
|