Jump to content
  • 0

Написал RSS ленту, а кодировка неправильная


vvsh
 Share

Question

http://vvsh.ru/rss/

Вот как все выглядит.

В базе данные хранятся в кодировке UTF-8, и выглядят они как и на сайте.

А вот код:

<?php
header("Content-Type: application/xml");
$end = "\r\n";
print "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>$end";
print "<rss version=\"0.92\">$end";
print "<channel>$end";
print "<title>Блог Шелгунова Владимира</title>$end";
print "<category>1</category>$end";
print "<link>http://vvsh.ru/</link>$end";
print "<copyright></copyright>$end";
print "<description></description>$end";
print "<lastBuildDate>Thu, 01 Jan 1970 03:00:00 +0300</lastBuildDate>$end";
print "<language>en</language>$end";
print "<pubDate>Thu, 01 Jan 1970 03:00:00 +0300</pubDate>$end";
print "<docs>http://vvsh.ru/rss/</docs>$end";
print "<managingEditor>admin@vvsh.ru</managingEditor>$end";
print "<webMaster>admin@vvsh.ru</webMaster>$end";
include('../config.php');
mysql_connect($dbhost,$dbuser,$dbpass);
mysql_query("SET NAMES UTF-8");
mysql_select_db($dbname);
$result = mysql_query("SELECT * FROM posts ORDER BY id DESC LIMIT 10");
while($row = mysql_fetch_array($result)){
$row[s_message] = str_replace("<","<",$row[s_message]);
$row[s_message] = str_replace(">",">",$row[s_message]);
$row[s_message] = str_replace('"',""",$row[s_message]);
$row[s_message] = str_replace("&","&",$row[s_message]);
print "<item>$end";
print "<title>$row[name]</title>$end";
print "<link>http://vvsh.ru/posts/$row[url]/</link>$end";
print "<description>$row[s_message]</description>$end";
print "<category>$row[cateory_id]</category>$end";
print "<pubDate>$row[date]</pubDate>$end";
print "<guid>http://vvsh.ru/posts/$row[url]/</guid>$end";
print "</item>$end";
}
print "</channel>$end";
print "</rss>$end";
?>

Пробовал с помощью ICONV перекодировать, но ничего не получилось.

Объясните пожалуйста, как сделать так, чтобы была человеческая кодировка.

Заранее спасибо.

Edited by vvsh
Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0
Я делал как вы говорите, не помогает.

Что то у тебя в последнее время постоянно одна и та же проблема с кодировкой, тебе эта мысль ни на что не наводит?

По ходу что то у тебя с бд, как то не правильно ее перевел в другую кодировку.

Link to comment
Share on other sites

  • 0

На сколько я понимаю rss берется из бд, так?

В бд стоит кодировка наверняка UTF-8, так?

А на странице rss стоит кодировка encoding="windows-1251", так чего же ты хочешь?

З.Ы. при чем что характерно, правой кнопкой клик - кодировка - ни одна не активна на странице rss! к чему бы это...?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy