Файл: mlord.ru/user/backpack.php
Строк: 48
<?
// Автор проекта GEARBAKC
// Офф.сайт GEARNET.RU
// http://gearnet.ru/users/1
// Только эксклюзивные скрипты!
require_once('../core/index.php');
require_once('../core/func.php');
avt();
$title='Рюкзак';
require_once('../design/head.php');
$count=$db->query("SELECT id FROM `backpack` WHERE `id_user`='".$user['id']."' AND `status`='0'")->rowCount();
if($count==0){echo '<div class="page">Рюкзак пуст.</div>';}
require '../core/pagination.php';
$pagination = new Pagination;
$pagination->sett($count, 10, true);
$res = $db->query("SELECT * FROM `backpack` WHERE `id_user`='".$user['id']."' AND `status`='0' ORDER BY `id` DESC " . $pagination->limit());
foreach($res as $post){
$thing = $db->query("SELECT * FROM `thing` WHERE `id`='".$post['id_thing']."'")->fetch();
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/><a href=/user/thing?id='.$post['id'].'&wear>Надеть</a>
</td></tr></table>';
}
echo $pagination->get();
require_once('../design/foot.php');
?>