Hello, I'm making my first attempt at parsing xml files. I've really only worked with basic php developing a wordpress theme, so I figured doing it in php would be best. I read about the SimpleXML extension in PHP 5, which I'm going to use if possible for what I'm trying to do, which is essentially recreate a table of betting odds. Here's an example of what I'm trying to recreate (sorry the board wouldn't let me post a link): www.bestfightodds.com. I don't care about the bells and whistles, just the table, although if I could figure out the best way to highlight the best line for each row, that would be awesome. Basically, each column is coming from a different XML file. I can figure out how to parse the name and matching odds for one file, but I'm not sure how it would be done with multiple files. Specifically, matching up the correct odds to the correct name for the files of which I'm not parsing the names. I'm not sure how to do that. Also, Is it even possible for it all to run automatically or would I need to be constantly changing the code in the parser every time a new event comes up? Any help would be much appreciated, thanks!