Video

{source}
<?php

// --- codice per prendere tutti i video da un canale youtube

$channel_id = "UCSNhRpdH_He14HQDX9OAtlA";
$channel_feed = "http://www.youtube.com/feeds/videos.xml?channel_id=".$channel_id;
$sxml = simplexml_load_file( $channel_feed );
//var_dump( $sxml );
$i = 1;
foreach ($sxml->entry as $entry) {
$video_data = explode("video:", $entry->id);
$video_id = $video_data[1];
?>
<iframe style="margin-right:10px;" width="250" height="200" src="https://www.youtube.com/embed/<?php echo $video_id ?>" frameborder="0" allowfullscreen></iframe>
<?php
if($i%2==0):
?>
<div style="width:100%;height:20px;"></div>
<?php
endif;

$i++;

}
// fine codice
?>
{/source}