12 lines
275 B
PHP
12 lines
275 B
PHP
<h5>Artiste list</h5>
|
|
<section class="list">
|
|
<?php
|
|
foreach($artistes as $artistes){
|
|
echo "<div><article>";
|
|
echo "<header class='short-text'>";
|
|
echo anchor("albums/viewAlbum/{$artistes->id}","{$artistes->name}");
|
|
echo "</header>";
|
|
echo "</article></div>";
|
|
}
|
|
?>
|
|
</section>
|