I understand the basics around XML etc, and i simply need to add in a clickable url into the output feed, so for example:
<?xml version="1.0" encoding="utf-8"?>
<PriceBoard>
<column>
<Deal Name="LocationA" Price="0.00">
</Deal>
<Deal Name="LocationB" Price="0.01">
</Deal>
</column>
</PriceBoard>
Outputs as:
LocationA 0.00
LocationB 0.01
I simply want to make the location clickable so it redirects to a new page. Could anybody advise on how this can be achieved.
You should convert your xml to html. The easiest way is using XSLT. Here is an example from w3schools