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

15 lines
338 B
PHP
Raw Normal View History

2024-05-28 11:34:30 +02:00
<h5>Albums of the artist</h5>
<section class="list">
<?php
foreach($AlbumsOfArtist as $AlbumOfArtists){
echo "<div><article>";
echo "<header class='short-text'>";
echo anchor("albums/view/{$AlbumOfArtists->id}","{$AlbumOfArtists->name}");
echo "<br>";
echo "</header>";
echo "</article></div>";
}
?>
</section>