Файл: mlord.ru/shop/kit.php
Строк: 52
<?
// Автор проекта GEARBAKC
// Офф.сайт GEARNET.RU
// http://gearnet.ru/users/1
// Только эксклюзивные скрипты!
require_once('../core/index.php');
require_once('../core/func.php');
avt();
$kit = $db->query("SELECT * FROM `kit` WHERE `id`='".num($_GET['id'])."'")->fetch();
$title=$kit['name'];
require_once('../design/head.php');
$count=$db->query("SELECT id FROM `thing` where `kit`='".$kit['id']."'")->rowCount();
if($count==0){echo '<div class="h2">Снаряжение нет.</div>';}
require '../core/pagination.php';
$pagination = new Pagination;
$pagination->sett($count, 10, true);
$res = $db->query("SELECT * FROM `thing` where `kit`='".$kit['id']."' ORDER by `lvl` ASC " . $pagination->limit());
foreach($res as $thing){
echo '<table width="100%" cellspacing="0"><tr><td class="h2" align="center" width="25%"><img src=/design/ico/maneken/'.$thing['id'].'.png></td>';
echo '<td class="h2" width="75%" style="font-size: 12px;">'.$thing['name'].'<br/>Сила рук: '.$thing['ruka'].' <br/> Сила ног: '.$thing['noga'].' <br/>
Ловкость: '.$thing['lovk'].' <br/>Защита: '.$thing['shit'].' <br/>Здоровье: '.$thing['hp'].'<br/>Цена: '.$thing['gold'].' золота<br/>
'.($thing['lvl']<=$user['lvl'] ? '<a href=/shop/shop?id='.$thing['id'].'>Купить</a>' : 'Не доступен для покупки').'
</td></tr></table>';
}
echo $pagination->get();
echo '<div class="rzd"></div>';
echo '<div class="h2"><a href=/shop/>Назад</a></div>';
require_once('../design/foot.php');
?>