Hi I am looking for a way to search a rss feed using php. I don't generate this feed, I just display it. Any help is much appreciated!
Take a look at the DOMDocument class. RSS is in its basic form is an XML file. Take a look at the SimpleXML class, use it to parse the feed and take what you want and output it.
Try looking at some of these code samples for PHP XML, you can probably find what you need. http://java2s.com/Code/Php/XML/CatalogXML.htm
I've looked at that stuff but im having some trouble getting things to work right. can anyone show me some examples? thanks!!!