This commit is contained in:
Igor Barkov [iwork]
2019-01-11 18:47:16 +02:00
parent 642fb82938
commit 0336ef47fa
2 changed files with 23 additions and 4 deletions

View File

@@ -20,6 +20,13 @@ while ($row = $result->fetch_assoc()) {
$iteminfo[] = new ItemClass($row);
}
echo "<table><tr>";
foreach ($iteminfo as $iinfo) {
echo "<td>";
$iinfo->printItemImage();
echo "</td>";
echo "<td>";
$iinfo->printItemStats();
echo "<td>";
}
echo "</tr></table>";