album(s) des artistes

This commit is contained in:
2024-05-28 11:34:30 +02:00
parent 63937f0b53
commit c98f0758c8
6 changed files with 54 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
<h5>Albums of the artist</h5>
<section class="list">
<?php
foreach($AlbumsOfArtist as $AlbumOfArtists){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/{$AlbumOfArtists->id}","{$AlbumOfArtists->name}");
echo "<br>";
echo "</header>";
echo "</article></div>";
}
?>
</section>