Merci pour la réponse voilà le code pour le lecteur
<?php
include ("./include.php");
?>
<html>
<head>
<title>Lecteur Flux RSS</title>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
</head>
<body>
lecteur RSS :<br>
<?php
$rss = array();
#$rss = lecteur_rss("http://siteweb
);
$rss =
lecteur_rss_v2("siteweb=withoutfile");
//$rss2 = lecteur_rss_v2("siteweb");
print_r($rss);
/*print_r($rss2);*/
/*
echo "0 -0 : ".$rss[9][0]."
| 0-1".$rss[9][1]."<br>\n";
echo "1 -0 : ".$rss[1][0]."
| 1-1".$rss[1][1]."<br>\n";
echo "2 -0 : ".$rss[2][0]."
| 2-1".$rss[2][1]."<br>\n";*/
$i=1;
while ($rss[$i][0] != "" ) {
echo "<a
href=\"http://siteweb/".$rss[$i][0]."\">".$rss[$i][1]."</a><br/>\n";
$i++;
}
/*for ($i = 1; $i <= $rss[0][0];
$i++ ){
echo "<a
href=\"siteweb/".$rss[$i][0]."\">".$rss[$i][1]."</a><br/>\n";
}*/
?>
</body>
</html>