hello friends. i am developing a couple of components for a site and I am generating RSS feeds to output data from my database. Some of these comoponents will need to read the xml to display such data, saving me another db call as the rss feeds will be cached.
i quickly found out that I have multiple choices for parsing and I am not sure which one is right for me needs. i started using the DOMDocument class but later found out that the class is not always accessible and must be installed in some cases.
i have seen other like SimpleXMLElement but still not sure if that's the one i should use. i have 1 feed that is super simple, 1 item in the RSS feed and SimpleXMLElement seems like the right one.
I will also have another feed that may have up to 128 items. Is SimpleXMLElement the right one for that size or should I be looking at another method??