28 lines
578 B
PHTML
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>
|