This commit is contained in:
Igor Barkov [iwork] 2019-01-11 18:54:14 +02:00
parent 6370010e7f
commit 61ddf7152a

View File

@ -22,10 +22,10 @@ while ($row = $result->fetch_assoc()) {
echo "<table width='100%'><th colspan='2'>Товары магазина</th>"; echo "<table width='100%'><th colspan='2'>Товары магазина</th>";
foreach ($iteminfo as $iinfo) { foreach ($iteminfo as $iinfo) {
echo "<tr><td>"; echo "<tr><td bgcolor='#d3d3d3'>";
$iinfo->printItemImage(); $iinfo->printItemImage();
echo "</td>"; echo "</td>";
echo "<td>"; echo "<td bgcolor='#d3d3d3'>";
$iinfo->printItemStats(); $iinfo->printItemStats();
echo "</td></tr>"; echo "</td></tr>";
} }