0

I have a news provider who deposits xml news files on my server via FTP every day. I need to automatically parse each day's files and display them on my Drupal website. I'm not even sure where to start... not sure how to instruct Drupal or PHP/MySQL to select the files automatically, parse them and display them. Any ideas? The XML structure is well-formed and never changes.

Thank you!

Jane

Jane
  • 947
  • 3
  • 12
  • 25

1 Answers1

1

For xml parsing:

https://github.com/pvhee/feeds_xmlparser

Danzan
  • 958
  • 5
  • 8
  • Oh thank you, actually, now I'm thinking maybe "Feeds XPath Parser" (http://drupal.org/project/feeds_xpathparser) is the way to go... I tried it some time ago with rather limited success, but now that I've dabbled in some XPath, maybe I'll have more luck with it...? Will check and post back. – Jane May 26 '11 at 17:27