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

16 lines
297 B
PHP
Raw Normal View History

2024-05-27 13:08:39 +02:00
<h5>Song of the album</h5>
<section class="list">
<?php
2024-05-27 14:04:46 +02:00
foreach($songs as $song){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/{$song->id}","{$song->name}");
echo "<br>";
echo "</header>";
echo "</article></div>";
}
2024-05-27 13:08:39 +02:00
?>
2024-05-27 14:04:46 +02:00
</section>