Files
SAe-PHP-S2/application/views/album_details.php
2024-06-16 17:39:26 +02:00

40 lines
1.5 KiB
PHP

<!DOCTYPE html>
<html>
<body>
<section class="section">
<div class="container">
<div class="columns is-vcentered">
<div class="column is-one-third">
<figure class="image is-square">
<img src="data:image/jpeg;base64,<?= base64_encode($album->jpeg) ?>" alt="<?= $album->albumName ?> Cover">
</figure>
</div>
<div class="column">
<h1 class="title"><?= $album->albumName ?></h1>
<p><strong>Artiste:</strong> <?= $album->artistName ?></p>
<p><strong>Genre:</strong> <?= $album->genreName ?></p>
<p><strong>Année:</strong> <?= $album->year ?></p>
</div>
</div>
<h2 class="title is-4">Chansons</h2>
<div class="table-container">
<table class="table is-striped is-fullwidth">
<thead>
<tr>
<th>Titre</th>
</tr>
</thead>
<tbody>
<?php foreach ($songs as $song): ?>
<tr>
<td><?= anchor("music/view/{$song->trackId}", $song->trackName) ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
</section>
</body>
</html>