Originalmente inviato da
stoner
no devi inserirla nel tag xml principale
Codice:
<?xml version="1.0" encoding="ISO-8859-1" ?>
Il carattere l'ho impostato tramite l'heaxder php
Codice PHP:
header("Content-type: text/xml; charset=iso-8859-1");
Guarda, ti posto il codice che ho creato così capisci meglio
Codice PHP:
<?
header("Content-type: text/xml; charset=iso-8859-1");
echo '<rss version="2.0">';
echo '<channel>';
echo '<title> FreeGameWeb feed RSS </title>';
echo '<link>http://freegameweb.altervista.org</link>';
echo '<description> Nuovi videogame di FreeGameWeb </description>';
echo "<copyright> Copyright 2009 FreeGameWeb</copyright>n";
echo "<docs>http://freegameweb.altervista.org/FEED/pagina_rss.php</docs>n";
echo "<managingEditor>freeegameweb@altervista.org</managingEditor>n";
echo "<webMaster>freeegameweb@altervista.org</webMaster>n";
echo '<language>IT-it</language>';
$file = file('/membri/freegameweb/index.txt');
$count = count($file);
$result = explode("|", trim($file[$count-$i-1]));
$url = $result['1'];
$nome = $result['2'];
$descrizione = $result['3'];
echo' <item>
<title><![CDATA[ '.$nome.' ]]></title>
<link><![CDATA[ '.$url.' ]]></link>
<description><![CDATA[ '.$descrizione.' ]]></description>
<guid> http://www.linkdescrizionefeed... </guid>
<category domain="http://www.linkcategoriafeed..."> </category>
</item>
';
echo'
</channel>
</rss>
';
?>