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

14 lines
286 B
PHP
Raw Normal View History

2024-06-03 15:02:52 +02:00
<h5>Song of the playlist</h5>
<section class="list">
<?php
foreach($songPlaylists as $songPlaylist){
echo "<div><article>";
echo "<header class='short-text'>";
echo "{$songPlaylist->name}";
2024-06-03 16:10:43 +02:00
echo "<br>";
2024-06-03 15:02:52 +02:00
echo "</header>";
echo "</article></div>";
}
2024-06-03 16:10:43 +02:00
2024-06-03 15:02:52 +02:00
?>
</section>