Displaying namespaced XML data in Drupal views
The Views XML Backend module allows data from XML documents to be rendered in Drupal views. It uses XPath queries to select rows and fields from XML data. Given
<rss>
<channel>
<item/>
</channel>
</rss>
the XPath query to get all the items within a channel would be /rss/channel/item.
- Read more about Displaying namespaced XML data in Drupal views
- Log in or register to post comments