Файл: public_html/modules/tutorial/1.php
Строк: 26
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
include_once ($root.'/core/base.php');
falseauth();
$header = "Начало";
include_once ($root.'/core/head.php');
if($u['tutorial'] != 1) redirect('/tutorial/'.$u['tutorial']);
if($u['tutorial'] >= 15) redirect('/');
if($u['save'] == 1) redirect('/');
if(isset($_GET['yes']))
{
setTutorialNum(2);
redirect('/tutorial/2');
}
if(isset($_GET['no']))
{
setTutorialNum(3);
redirect('/tutorial/3');
}
echo '<center><div class = "notice_container">
<div class = "gborder notice_alert alert-success">
Поле боя
</div></div></center>';
echo '
<div class="b">
<table width="100%">
<tr>
<td width="55px" valign="top">
<img width="50px" src="/images/naparnik.png"/>
</td>
<td valign="top">
<big> <font color = "white">Напарник</font></big>
<div class="txt">
Тебя ударил один из противников, все нормально?
</div>
</td>
</tr>
</table>
';
echo'<center><a href="?yes"><input type="submit" value="Да"></a> <a href="?no"><input type="submit" value="Нет"></a></center></div>';
include_once ($root.'/core/foot.php');