4 lines
156 B
PHP
4 lines
156 B
PHP
|
<?php foreach ($presentsList as $row): ?>
|
||
|
<img src="<?= $row['img'] ?>" title="<?= $row['sender'] ?>" alt="<?= $row['sender'] ?>">
|
||
|
<?php endforeach; ?>
|