Tom Wahlin
Tom Wahlin

Reputation: 137

XSD feed to XHTML markup?

I have a feed here http://artistdata.sonicbids.com/my-lady-four/shows/xml/past that I would like to convert to XHTML. I am very familiar with XHTML, just not really sure how to parse the feed. Is there a jQuery solution or something fairly easy to implement?

Thanks in advance.

Upvotes: 0

Views: 161

Answers (1)

ChrisBenyamin
ChrisBenyamin

Reputation: 1728

You can parse it e.g. with an XSLT processor in PHP.

Here you go: http://www.php.net/manual/de/xsltprocessor.transformtoxml.php

It's quite simple. Follow the example 1.

I suggest you are not familiar with XSL too? Then I recommend to you this learning website: http://w3schools.com/xsl/default.asp

If you like this approach, let us know, then we can help you writing a transformation (xsl).

Upvotes: 1

Related Questions