// Change this to your username to load in your videos
$vimeo_user_name = 'matv';
$api_endpoint = 'http://www.vimeo.com/api/'.$vimeo_user_name;
// Load the user info and clips
$user = simplexml_load_file($api_endpoint . '/info.xml');
$videos = simplexml_load_file($api_endpoint .'/clips.xml');
echo "
Latest Videos on MATV
";
for($i = 0; $i < 5; $i++) {
?>
}
?>