15 lines
540 B
PHP
Raw Normal View History

2024-06-04 23:26:09 +02:00
<!DOCTYPE html>
<html>
<head>
2024-06-05 01:15:45 +02:00
<title><?= $song['songName'] ?> - Details</title>
2024-06-04 23:26:09 +02:00
</head>
<body>
2024-06-05 01:15:45 +02:00
<h1><?= $song['songName'] ?></h1>
2024-06-05 08:08:12 +02:00
<p><strong>Album:</strong> <?= anchor("music/view/{$song['albumId']}", $song['albumName']) ?> (<?= $song['year'] ?>)</p>
<p><strong>Artist:</strong> <?= $song['artistName'] ?></p>
2024-06-05 01:15:45 +02:00
<?php if(isset($song['jpeg']) && $song['jpeg'] != ''): ?>
2024-06-05 08:08:12 +02:00
<img src="data:image/jpeg;base64,<?= base64_encode($song['jpeg']) ?>" alt="<?= $song['albumName'] ?> Cover">
2024-06-05 01:15:45 +02:00
<?php endif; ?>
2024-06-04 23:26:09 +02:00
</body>
</html>