14 lines
286 B
PHP
14 lines
286 B
PHP
<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}";
|
|
echo "<br>";
|
|
echo "</header>";
|
|
echo "</article></div>";
|
|
}
|
|
|
|
?>
|
|
</section>
|