What's the best way to parse an XML file into HTML?
What's the best way to parse an XML file into HTML? I'm attempting to encapsulate the data in my web page from the actual HTML. Normally, I would use something like MySQL/PHP to do this, but for reasons beyond my control, I'm creating a large XML file that will hold information like training events.
I started out using javascript to do this, but the javascript is getting very large and bulky very fast. So I'm thinking about using an XSLT inside of an iFrame to do it instead. I figure the XSLT will be much simpler to maintain and less prone to error. Is this feasible, and it will it be compatible with the major other browsers? Or, is there an even better way to do what I'm trying to accomplish?
|