Ver Mensaje Individual
  #8 (permalink)  
Antiguo 09/12/2008, 21:50
Suyta
(Desactivado)
 
Fecha de Ingreso: septiembre-2004
Mensajes: 360
Antigüedad: 19 años, 7 meses
Puntos: 1
Respuesta: string.strip_tags

Es éste:

Código PHP:
<?php
// Include the SimplePie library
require_once('simplepie.inc');

// Create a new SimplePie object
$feed = new SimplePie();

// Instead of only passing in one feed url, we'll pass in an array of three
$feed->set_feed_url(array(
    
'http://rss.news.yahoo.com/rss/topstories',
    
'http://newsrss.bbc.co.uk/rss/sportonline_world_edition/football/rss.xml',
    
'http://sports.yahoo.com/sow/rss.xml'
));
$feed->enable_cache(false);

// We'll use favicon caching here (Optional)
//$feed->set_favicon_handler('handler_image.php');

// Initialize the feed object
$feed->init();

// This will work if all of the feeds accept the same settings.
$feed->handle_content_type();

?>

<table border="0" cellpadding="3" cellspacing="3" width="100%" id="table1">

 <tr>
        <td width="50%">&nbsp;</td>
        <td width="25%">&nbsp;</td>
        <td width="25%">&nbsp;</td>
    </tr>

 <tr>
        <td width="50%"><font face="Verdana" size="1"><b>Title</b></font></a></td>
        <td width="25%"><font face="Verdana" size="1"><b>WebSite</b></td>
        <td width="25%"><font size="1" face="Verdana"><b>Added</b></font></td>
    </tr>

        <?php if ($feed->error): ?>
        <p><?php echo $feed->error?></p>
        <?php endif; ?>

        <?php foreach ($feed->get_items() as $item):


        
?>

         <tr>
        <td width="50%">
        <font face="Verdana" size="1"><a href="<?php echo $item->get_permalink(); ?>"><?php echo $item->get_title(); ?></a></FONT></td>
        <td width="25%"><font face="Verdana" size="1">
        <a href="<?php $feed $item->get_feed(); echo $feed->get_permalink(); ?>"><?php $feed $item->get_feed(); echo $feed->get_title(); ?></a></I></font></td><td width="25%"><font face="Verdana" size="1">
        <?php echo $item->get_description(); ?></font></td>
        <td width="25%"><font size="1" face="Verdana"><?php echo $item->get_date('j M Y g:i'); ?></font></td>
    </tr>



        <?php endforeach; ?>

</table>
Y como te muestro en:
http://globalwork.no-ip.org/phase3/index.php
Trabaja perfectamente salvo en 1 ó 2 servidores pero no puedo entender por qué :(

Tampoco sé por qué pego el código aquí y me agrega Foros del Web en el link a images/ jajajaja

Última edición por Suyta; 09/12/2008 a las 22:43