I have this PHP web application.
It has a link to an XML file to which I have no control.
How can I make the XML display nicely?
I just want it to line up in a table or it can even look like a data file.
Can I attach an XSLT file or style sheet to the XML file from the outside i.e. I wish I could, but I can't put this in the XML:
<?xml-stylesheet type="text/xsl" href="tabledisplay.xsl"?>
The only thing I can think to do is create a link to a PHP file which reads the XML into a string, inserts the XSL reference, and then prints everything to the browser.