I wish to parse the RSS feed in PHP. I first found various third party libraries to do the same namely: Magpie and simplepie.
But since RSS files are in XML format, PHP also has native functions of simplexml_load_file to parse a XML file.
So why should one required the external libraries and not use the native function?