Файл: top/str.php
Строк: 21
<?
require_once('../core/index.php');
require_once('../core/func.php');
avt();
$title='Топ';
require_once('../design/head.php');
$count=$db->query("SELECT * FROM `users` WHERE `victory`+`defeat`!='0'")->rowCount();
// if($count==0){echo '<div class="h2">Топ пуст.</div>';}
$res = $db->query("SELECT * FROM `users` WHERE `dragonlvl`*'10'+`naemstats`+`ruka`+`noga`+`hp_max`+`lovk`+`shit`!='0' ORDER BY `dragonlvl`*'10'+`naemstats`+`ruka`+`noga`+`hp_max`+`lovk`+`shit` DESC LIMIT 10");
foreach($res as $top){
echo '<div class="h2">'.us($top['id']).'<br/>Сила: '.(($top['dragonlvl']*10)+$top['naemstats']+$top['lovk']+$top['shit']+$top['ruka']+$top['noga']).'</div>';
}
require_once('../design/foot.php');
?>