Файл: public_html/modules/forge/stones/index.php
Строк: 30
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
include_once ($root.'/core/base.php');
falseauth();
$header = "Установка самоцветов";
include_once ($root.'/core/head.php');
$items = $db->query("SELECT * FROM `inventory` WHERE `user` = '".$u['id']."'");
echo '<div class="b">Выберите предмет для установки самоцвета</div>';
if($items->num_rows > 0)
{
while($it = $items->fetch_object())
{
$itemInfo = $db->query("SELECT * FROM `subject` WHERE `id` = '".$it->item."'")->fetch_object();
$issetStones = $db->query("SELECT * FROM `stones_item` WHERE `item` = '".$it->id."'");
echo ' <a href="/forge/stones/'.$it->id.'">
<div class="b">
<table width="100%">
<tr>
<td width="40px" valign="top">
<img width="50px" src="'.$itemInfo->images.'"/>
</td>
<td valign="top">
<big> <font color = "white">'.$itemInfo->name.'</font></big>
<div class="txt"> ';
if($issetStones->num_rows > 0)
{
echo '
Самоцветы: ';
while($i = $issetStones->fetch_object())
{
echo ' <img src="/images/stones/'.$i->type.'.png" width="20px"> ';
}
}else{
echo"Самоцветы не установлены";
}
echo'</div>
</td>
</tr>
</table> </div></a>
';
}
}
echo"<div class = 'notice_container'>
<div class = 'gborder notice_alert alert-success'>
<b>Самоцветы</b> - это уникальное усиление вещи с помощью установки камней. На одну вещь можно установить не более 3 самоцветов.
</div></div>";
include_once ($root.'/core/foot.php');