лимит чтобы не тянуть всё из базы
This commit is contained in:
parent
ceee28678c
commit
232cdf3aa4
@ -15,7 +15,7 @@ class InventoryItem extends Item
|
||||
parent::printBaseInfo();
|
||||
parent::printRequirements();
|
||||
parent::printBonuses();
|
||||
if ($this->present) echo "<p style='color: maroon; font-style: italic'>Этот предмет вам подарил {$this->present}. Вы не можете передать его кому-либо.</p>";
|
||||
if ($this->present) echo "<p style='color: maroon; font-style: italic'>Этот предмет вам подарил {$this->present}. Вы не можете передать его кому-либо ещё.</p>";
|
||||
}
|
||||
|
||||
public function printImage()
|
||||
|
2
test.php
2
test.php
@ -15,7 +15,7 @@ require_once 'config.php';
|
||||
# $items = []; foreach(фетч того ебучего массива as $value) {$items[$value['id']] = $value}
|
||||
|
||||
$iteminfo =[];
|
||||
$result = db::c()->query('SELECT * FROM `shop` WHERE count > 0');
|
||||
$result = db::c()->query('SELECT * FROM `shop` WHERE count > 0 LIMIT 25');
|
||||
$result2 = db::c()->query('SELECT * FROM `inventory` WHERE owner = 11263');
|
||||
while ($row = $result->fetch_assoc()) {
|
||||
$iteminfo[] = new ShopItem($row);
|
||||
|
Loading…
Reference in New Issue
Block a user