Ciao sapete dirmi il perché validando questa pagina mi da errore....
codice php
Codice PHP:
<?php include 'impostazioni_blog.php'; Header("Content-type: application/xml"); ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
<title>hotmailpower Blog RSS Feed</title>
<description>Notizie, guide e tutorials...</description>
<link>http://hotmailpower.altervista.org/</link>
<copyright>Copyright 2009-2010 hotmailpower</copyright>
<generator>hotmailpower Feed RSS Generator</generator>
<language>it-it</language>
<ttl>60</ttl>
<?php
$post = mysql_query("SELECT * FROM post ORDER BY id DESC");
while($post_blog = mysql_fetch_array($post)){
?>
<item>
<title><?php echo $post_blog[0]; ?>) <?php echo ucfirst($post_blog[1]); ?></title>
<link>http://hotmailpower.altervista.org/post.php?id=<?php echo $post_blog[0]; ?></link>
<description><![CDATA[
<p><?php echo testo($post_blog[6]); ?></p>
]]></description>
<dc:creator>hotmailpower</dc:creator>
<guid isPermaLink="true">http://hotmailpower.altervista.org/post.php?id=<?php echo $post_blog[0]; ?></guid>
</item>
<?php } ?>
</channel>
</rss>