2024-06-04 23:26:09 +02:00

23 lines
691 B
PHP

<!DOCTYPE html>
<html>
<head>
<title><?= $artist->artistName ?> - Details</title>
</head>
<body>
<h1><?= $artist->artistName ?></h1>
<?php if (!empty($artist->genreName)): ?>
<p><strong>Genre:</strong> <?= $artist->genreName ?></p>
<?php endif; ?>
<?php if (!empty($artist->jpeg)): ?>
<img src="data:image/jpeg;base64,<?= base64_encode($artist->jpeg) ?>" alt="<?= $artist->artistName ?> Photo">
<?php endif; ?>
<h2>Albums</h2>
<ul>
<?php foreach ($albums as $album): ?>
<li><?= anchor("albums/view/{$album->albumId}", $album->albumName) ?> (<?= $album->year ?>)</li>
<?php endforeach; ?>
</ul>
</body>
</html>