Hello, I hit a brick wall with the conversion of quotes in what is my first ever RSS feed, which I am generating with PHP from content that is in a MySQL database.
Basically Safari's RSS reader and Google's RSS reader (opened in FireFox) both display the quotes correctly but FireFox's own RSS reader and NewsGator online RSS reader (opened in Safari) don't display them correctly. Instead of single quotes and double quotes they show a question mark in a black diamond single. The same also happens in my iPhone's RSS reader. You can see what I am talking about here: http://www.chaindlk.com/reviews/rss.php
I have tried all of the following:
$review = str_replace('<br />','',$object->text);
$review = htmlspecialchars($review,ENT_QUOTES);
$review = str_replace(''','&39;',$review);
$review = str_replace('"','"',$review);
but none of them seem to work.
Can anyone point me in the right direction?
Thanks so much