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

14 lines
357 B
PHP
Raw Normal View History

2024-06-05 11:14:54 +02:00
<section class="artiste">
2024-05-23 11:41:06 +02:00
<?php
2024-05-30 16:14:38 +02:00
foreach($artistes as $artiste){
2024-05-23 11:41:06 +02:00
//echo "<div><article>";
//echo "<header class='short-text'>";
2024-05-30 16:14:38 +02:00
echo anchor("artistes/view/{$artiste->id}","{$artiste->name}");
2024-05-23 11:41:06 +02:00
echo "<br>";
echo "</header>";
//echo "<footer class='short-text'>{$artistes->year} - {$artistes->artistName}</footer>
//</article></div>";
}
?>
2024-05-30 10:05:37 +02:00
</section>