Hello:
I need help in parsing an XML feed using PHP. Please find below my issue. I have an XML file which has the news feed in the following format.
<title>Title of the news</title>
<link>http://www.linkforthenews.com</link>
<description>News contents [Wired by: mydomain.com]</description>
</item>
While parising and displaying in my webpage, I want to make the text: mydomain.com a hyperlink to the site. I tried replacing the text with <a href="http://mydomain.com" target="new">mydomain.com</a>. But it is found that the page stops displayng the contents when it founds the '<' tag inside my code. Please help me in resolving the text. Also if the News contents contains a hyperlink anywjere in the data the rest of the data is not displayed for that item.