18 lines
837 B
PHP
18 lines
837 B
PHP
|
<?php
|
|||
|
include("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"));
|
|||
|
?>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<link rel="stylesheet" type="text/css" href="css/main.css" />
|
|||
|
<meta content="text/html; charset=utf-8" http-equiv="Content-type" />
|
|||
|
<meta http-equiv="Cache-Control" content="no-cache" />
|
|||
|
<meta http-equiv="PRAGMA" content="NO-CACHE" />
|
|||
|
<meta http-equiv="Expires" content="0" />
|
|||
|
<title>Башня смерти. Отчет о турнире #<? echo $tr['id']; ?></title>
|
|||
|
</head>
|
|||
|
<body style="margin: 5px; background-color: #e2e0e0;">
|
|||
|
<h3>Башня смерти. Отчет о турнире.</h3>
|
|||
|
Призовой фонд : <b><? echo $tr['coin']; ?> кр.</b><br /><? echo $tr['log']; ?><br />
|
|||
|
</body>
|
|||
|
</html>
|