I'm trying to use an RSS feed from my blog on the news section on another site. Everything seems to be working fine until I use something like an ellipsis on my blog.
The expected output is:
One more time…less fail
Although this is no joking matter…
The actual output is:
One more time?less fail
Although this is no joking matter…
The problem is that ?
should be a ...
. The code I'm using is the same for the first line (the blog title) and the second line (the blog contents) and that code is:
$a = utf8_decode($a);
print($a);
Where $a
is the string from the RSS feed.
Can anyone point in the right direction why that code would work correctly for the body (second line) and not for the title (first line)? Or suggest a better way to do this?
Thanks!
Update: If you'd like to check out the RSS feed for yourself in order to provide accurate code, it can be found at: feed://chimaera.fortunestreetglobal.com/wordpress/?feed=rss2
Edit: Just to clarify, I'm really looking for how I should handle the RSS such that no matter what is posted in the blog, it will be displayed correctly on my other site.