was trying to parse a rss xml feed
$fp = fopen("http://feeds.news.com.au/public/rss/2.0/news_national_breaking_news_39.xml","r") or die("Error reading RSS data.");
but it keeps dying anyone know why ? works on one server but not the other
I copied-and-pasted your fopen() to a script on my PC and was able to use it to read that file; so my guess is that the URL fopen wrapper is not enabled on your server.
The resulting message will contain more information.
Mark