15 lines
540 B
PHP
15 lines
540 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><?= $song['songName'] ?> - Details</title>
|
|
</head>
|
|
<body>
|
|
<h1><?= $song['songName'] ?></h1>
|
|
<p><strong>Album:</strong> <?= anchor("music/view/{$song['albumId']}", $song['albumName']) ?> (<?= $song['year'] ?>)</p>
|
|
<p><strong>Artist:</strong> <?= $song['artistName'] ?></p>
|
|
<?php if(isset($song['jpeg']) && $song['jpeg'] != ''): ?>
|
|
<img src="data:image/jpeg;base64,<?= base64_encode($song['jpeg']) ?>" alt="<?= $song['albumName'] ?> Cover">
|
|
<?php endif; ?>
|
|
</body>
|
|
</html>
|