hello I have vbulletin forum and I use rss of it to import news from some site but I have problem cuz some site use different charset from my site any one plz can help me on this? thanks in advance
I can convert charset but still and the same problem with aother news site which use different charset I would if someone can tell me what google news depende on to solve this problem thanks
Before the conversion, you must determine the encoding preference of Rss flow. But then convert it, such as : // $rsscp is charset of RSS flow // $rss is a string variable, with the rss <item> $converted = iconv ("UTF-8", $rsscp, $rss); PHP: If i get you right...