отлично!!!
все заработало
http://www.alesh.ru/rss/win.xml
http://www.alesh.ru/rss/koi.xml

PHP код:
<?php header("Content-type: application/xml") ?>
<<?php ?>?xml version="1.0" encoding="windows-1251"?>
<!DOCTYPE rss PUBLIC "-//Netscape Communications//DTD RSS 0.91//EN"
"http://my.netscape.com/publish/formats/rss-0.91.dtd">
<rss version="0.91">
<channel>
<title>Alesh.Ru</title>
<description>Бестолковая интернет переодическая программа</description>
<link>http://www.alesh.ru</link>
</channel>
<image>
<title>alesh.ru</title>
<url>[url]http://www.alesh.ru/img/88x31.gif[/url]</url>
<link>[url]http://www.alesh.ru/&[/url];ya</link>
<width>88</width>
<height>31</height>
</image>
<?php
include "connect.php";//Mysql
$sqll="select * from articles ORDER BY date DESC LIMIT 15 ";
$resultt=@mysql_Query($sqll) or die("Статья не найдена");
$numb = MYSQL_NUMROWS($resultt);
$i = 0;
IF ($numb == 0) {
PRINT "<CENTER><P>Статей нет</CENTER>";
} ELSEIF ($numb > 0) {
WHILE ($i < $numb){
$titlee = mysql_result($resultt,$i,"title");
$nn = mysql_result($resultt,$i,"num");
$razdel = mysql_result($resultt,$i,"raz");
###
?> <item>
<title><?php echo htmlspecialchars($titlee) ?></title>
<link>http://www.alesh.ru/<?php echo htmlspecialchars($nn)?></link>
<description><?php echo htmlspecialchars($titlee) ?></description>
</item>
<?php
###
$i++;
}
}
?>
</rss>
Крейзи! С меня пиво!