Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/11/2011, 11:49
Cuntina
 
Fecha de Ingreso: noviembre-2011
Mensajes: 11
Antigüedad: 12 años, 5 meses
Puntos: 0
Respuesta: Problema con frases

No, me equivoqué de código, el que uso es:
Cita:
<?php
header("Content-type: text/html; charset=utf-8");
$rss_forosdelweb = file_get_contents("http://www.forosdelweb.com/external.php?type=RSS2&forumids=18");
$xml = new SimpleXMLElement($rss_forosdelweb);
echo "<span style='font-weight: bold; font-size: 26px;'>" . $xml->channel->title . "</span><br /><br />";
foreach($xml->channel->item as $item){
echo "<a href='".$item->link."'>".$item->title."</a> -> " . nl2br(htmlentities($item->description, ENT_QUOTES, "UTF-8")) . "<br /><br />";
}