//require_once "XML/RSS.php";
$target="target='_blank'";
$url = "http://www.diplomatie.gouv.fr/fr/backend_fcv.php3";
echo "\n";
$xmlDoc = new DOMDocument();
$xmlDoc->load($url);
$items=$xmlDoc->getElementsByTagName("item");
foreach( $items as $item )
{
$titles = $item->getElementsByTagName("title");
$title = $titles->item(0)->nodeValue;
$links = $item->getElementsByTagName("link");
$link = $links->item(0)->nodeValue;
$pubdates = $item->getElementsByTagName("pubDate");
$pubdate = $pubdates->item(0)->nodeValue;
$pubdatetext = substr($pubdate,0,16);
echo "" . $title . " - " . $pubdatetext . "
";
}
echo " \n";
?>
|