Files
anpdf/app/views/klanbooks.phtml
2022-12-04 17:45:29 +03:00

28 lines
578 B
PHTML

<html>
<body>
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700');
</style>
<h1>Книги в подписке</h1>
<table>
<?foreach ($books as $book):?>
<tr>
<td><?=$book['price_id']?></td>
<?if ($book['author_id'] > 0 ):?>
<td><?=$book['author']?></td>
<?elseif ($book['priceauthor'] !== ''):?>
<td><?=$book['priceauthor']?></td>
<?endif?>
<td><?=$book['pricename']?></td>
</tr>
<?endforeach?>
</table>
</body>
</html>