Files
SAE_PHP_2024/CodeIgniter-3.1.13/application/views/chansons_list.php

15 lines
499 B
PHP
Raw Normal View History

2024-05-27 13:32:33 +02:00
<h5>Chansons list</h5>
<section class="list">
<?php
foreach($chansons as $chansons){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/{$chansons->id}","{$chansons->name}");
echo "</header>";
echo "<nav class='short-text'>Nom album: {$chansons->albumName}</nav>";
echo "<nav class='short-text'>Genre: {$chansons->genreName}</nav>";
echo "<footer class='short-text'>{$chansons->year} - {$chansons->artistName}</footer>
</article></div>";
}
?>
</section>