I'm having a problem with this xml reader, it just reads the first xml item, can anyone help me? Thanks
<?php
$link = "http://war.deathface.com.br/wo/api_getserverinfo.xml";
$xml = simplexml_load_file($link);
foreach($xml -> news as $dados){
echo "<strong>Título:</strong> ".utf8_decode($dados -> news['name'])."<br />";
echo "<br />";
}