$id = (int)$_GET['id'];
// displays all the file nodes
if(!$xml=simplexml_load_file('http://vimeo.com/api/v2/video/'.$id.'.xml')){
trigger_error('Error reading XML file',E_USER_ERROR);
}
foreach($xml as $video) {
$ficha_tecnica = $video->description;
$ficha_tecnica = str_replace("
","|",$ficha_tecnica);
$ficha_array = explode("|",$ficha_tecnica);
$tam = sizeof($ficha_array);
?>
for ($i=0;$i<$tam/2;$i++): $linha = explode(":",$ficha_array[$i]); ?>
:
endfor; ?>
for ($i=$tam/2+1;$i<$tam;$i++): $linha = explode(":",$ficha_array[$i]); ?>
:
endfor; ?>
}
?>