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

17 lines
485 B
PHP
Raw Normal View History

2024-06-05 11:14:54 +02:00
2024-06-03 15:02:52 +02:00
<section class="list">
<?php
foreach($songPlaylists as $songPlaylist){
echo "<div><article>";
echo "<header class='short-text'>";
2024-06-05 17:38:12 +02:00
echo "<form action='" . base_url("index.php/Playlist/deleteSong/{$id_playlist -> id}/{$songPlaylist-> name}") . "' method='post'>";
2024-06-03 15:02:52 +02:00
echo "{$songPlaylist->name}";
2024-06-05 17:38:12 +02:00
echo "<button type='submit' class='delete-button'>Delete</button>";
echo "</form>";
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>