Quiero mostrar a traves de RSS las noticias que posteo (en otro lugar) consultando una base MySQL desde PHP.
Les parece que podría funcionar also así?, seguramente no es tan simple, pero haciendo esto el navegador vería un xml con todas sus caracteristicas
<?PHP
$link = mysql_connect("localhost","consultas","");
mysql_select_db("base", $link);
$result = mysql_query("SELECT indice, habilita, titulo, bajada FROM postea where habilita < 2 ORDER BY `indice` DESC limit 1,5", $link);
echo "<?xml version='1.0' ?>
<rdf:RDF
xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#'
xmlns='http://my.netscape.com/rdf/simple/0.9/'>";
echo "<channel>
<title>Titulo</title>
<link>http://127.0.0.1/</link>
<description>Descripcion del RSS</description>
</channel>";
while ($row = mysql_fetch_row($result)){
echo "<item>";
echo "<title>$row[2]</title>";
echo "<link>http://127.0.0.1\publica.php?mostrar=$row[0]</link>";
echo "<description>$row[3]</description>";
echo "</item>";
}
echo "</rdf:RDF>";
mysql_close();
?>