Before I start to code a RSS Parser in PHP, I'd like to see if there's a free script I can use to parse a unique XML file. This file is unique because it doesn't use the normal tags: <title>Hello!</title> This xml file uses: <title=Monday>Hello!</title> I have plenty of experience parsing normal XML's, I just need to figure out a way to do the same with the above example. I am considering splitting the strings - but before I do all that work, what are your suggestions to me? How would you go about parsing such file? The XML file's tags will never change by the way - it will always be like <title=Something></title>.