début de la sae

This commit is contained in:
2024-05-25 00:33:32 +02:00
parent 590cf70e7c
commit 4fa9894568
262 changed files with 70185 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<h5>Albums list</h5>
<section class="list">
<?php
foreach($albums as $album){
echo "<div><article>";
echo "<header class='short-text'>";
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>
</article></div>";
}
?>
</section>