I notice in your code you have
Code:
$article['description'] = strip_tags(htmlspecialchars($article['description']));
I changed it too
Code:
$article['description'] = $article['description'];
Seems to work fine now...... No more <b> </b> Shows up bold now.. Only problem now is there is no space between the bold words and the rest of the article.
Example here:
http://www.insidersportszone.com/for...6497#post26497
I would also like to know how to get them to show up if they dont have a desription. Because I cant use NFL.com or alot of sports feeds because they dont have descritions in their feeds.
Thanks again..