<?php header ("Content-type: text/xml"); ?>
 
<?php xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
    <title>Revista Plural</title>
    <link>http://revistaplural.hl06.dinaserver.com</link>
    <description>Ultimos Posts de Plural</description>
    <language>es</language>
    <?php
        include('conexion.php'); // conexión a la BBDD
        $result = mysql_query ("SELECT * FROM wp_posts") or die (mysql_error());
       
        while ($row = mysql_fetch_array ($result)) {
    ?>
    <item>
        <title><?php echo $row['post_title'] ?></title>
        <link><?php echo $row['url'] ?></link>
        <description><?php echo $row['post_content'] ?></description>
    </item>
    <?php }
    mysql_free_result ($result);
    ?>
</channel>
</rss>
