Actually there are two ways to embed playlists from youtube.
In the first method you can directly specify all the videos that you want to play in the embed player.
<iframe width="720" height="405" src="https://www.youtube.com/embed/VIDEO_ID?playlist=VIDEOID_1,VIDEOID_2"frameborder="0" allowfullscreen>
Each video ID must be separated by using comma.
Secondly, you can embed a playlist that is already present in youtube using the playlist ID
<iframe width="720" height="405" src="https://www.youtube.com/embed/?listType=playlist&list=PLAYLIST_ID" frameborder="0" allowfullscreen>