chanson d'un album

This commit is contained in:
2024-05-27 14:04:46 +02:00
parent 1e2735d5ba
commit 63937f0b53
4 changed files with 24 additions and 17 deletions

View File

@@ -4,7 +4,7 @@
foreach($albums as $album){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/song_album_list.php","{$album->name}");
echo anchor("albums/view/{$album->id}","{$album->name}");
echo "</header>";
echo '<img src="data:image/jpeg;base64,'.base64_encode($album->jpeg).'" />';
echo "<footer class='short-text'>{$album->year} - {$album->artistName}</footer>

View File

@@ -3,6 +3,13 @@
<?php
foreach($songs as $song){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/{$song->id}","{$song->name}");
echo "<br>";
echo "</header>";
echo "</article></div>";
}
?>
</section>
</section>