14 lines
451 B
PHP
14 lines
451 B
PHP
<h5>Playlist List</h5>
|
|
<?php
|
|
foreach($playlists as $playlist){
|
|
echo "<div><article>";
|
|
echo "<header class='short-text'>";
|
|
echo anchor("playlist/SongPlaylist/{$playlist->id}","{$playlist->name}");
|
|
echo "<form action='" . base_url("index.php/playlist/delete/{$playlist->id}") . "' method='post'>";
|
|
echo "<button type='Supprimer Playlist'>Delete</button>";
|
|
echo "</form>";
|
|
echo "</header>";
|
|
echo "</article></div>";
|
|
}
|
|
?>
|