I have a XML file on my domain which refreshes with new data frequently and I want to call it as readable HTML on external domain.
I've been trying but can't figure out how to get the external to show a refreshed version of the xml file content.
On the external site I can only use client side scripting (html, javascript, etc)
EXAMPLE:
XML FEED @
http://First-Domain.com/refreshingXMLfeed.xml--------------------------
----------
----------
----------
----------
----------
----------
-------
<?xml version="1.0"?>
<site name="First-Domain.com">
<live_visitors page="index">5345</live_vi
sitors>
<live_visitors page="cart">684</live_visi
tors>
</site>
HTML OUTPUT @
http://Second-Domain.com/index.html--------------------------
----------
----------
----------
----------
----------
----------
-----
SITE NAME: First-Domain.com<br/>
5345 LIVE VISITORS at PAGE index<br/>
684 LIVE VISITORS at PAGE cart
Start Free Trial