I'm trying to load the contents of what should be an rss feed in a .ashx file on a client's site. I'm not sure if this is possible. Here is the code I'm using.
$doc = new DOMDocument();
$doc->load($client_url);
echo htmlentities($doc->saveXML());
All that is being echoed is <?xml version="1.0"?>
which I believe is being created from the saveXML() function.
Any help?
Thanks, Caleb