ajouter song playlist

This commit is contained in:
2024-06-05 19:36:03 +02:00
parent ef10b58bb0
commit ba57a3adc3
7 changed files with 39 additions and 14 deletions

View File

@@ -57,6 +57,13 @@ class Playlist extends CI_Controller {
$create = $this->model_music->createPlaylist($name_playlist);
redirect('playlist');
}
public function addSongToPlaylist(){
$songName = $this->input->post('song');
$playlistId = $this->input->post('playlist');
$this->model_music->addSongToPlaylist($songName, $playlistId);
redirect('playlist');
}
}