SAEWEB2.2/ci/application/views/albums_artist_list.php

16 lines
755 B
PHP
Raw Normal View History

2024-05-28 11:34:30 +02:00
<h5>Liste des albums</h5>
<section class="container">
<?php
foreach ($AlbumsOfArtists as $AlbumsOfArtist) {
echo "<div class='album'><article>";
echo "<header class='album-title'>";
echo anchor("albums/view/{$AlbumsOfArtist->id}", "{$AlbumsOfArtist->name}");
echo "<br>";
echo "</header>";
echo '<img src="data:image/jpeg;base64,' . base64_encode($AlbumsOfArtist->jpeg) . '" alt="' . $AlbumsOfArtist->name . '" />';
echo "<footer class='short-text'>$AlbumsOfArtist->year</footer>";
echo "</article></div>";
}
?>
</section>