1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Actualité de la Virtual European Air Force</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="robots" content="All"/>
<meta name="keywords" content=""/>
<link rel="stylesheet" href="news.css" type="text/css"/>
</head>
<body>
<?php
$rss = simplexml_load_file('http://www.veaf.org/forums/syndication.php?fid=203&t=1');
foreach ($rss->channel->item as $item) {
echo '<div class="news_box">
<div class="news_box_title">'.$item->title.'</div>
<div class="news_box_date">le '.date("d/m/Y",strtotime($item->pubDate)).'</div>
'.$item->description.' <BR>
<div class="news_suite"><a href="'.$item->link.'">Lire la suite, commentaires...</a></div>
<span class="article_separator"> </span>
</div>';
}
?>
</body>
</html> |
Partager