i would like know how to build a rss feed that is evergoing using jquery.
additionally, i would like to use php and mysql to put the feeds into a table to be re-used and searched.
thanks so much =)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To do what that (what you asked in the comments), you’ll need to download the rss. It could be done using file_get_contents or curl.
Once you’ve downloaded it, you’ll need to parse the xml using an XML parser (obviously). There’s SimpleXml or Dom. Actually there are several xml parsers, i wouldn’t be surprised if you find a parser created specifically for rss. If you use SimpleXml you could directly download the rss from the constructor and you wont need to do it yourself.
Finally all you need to do is loop through the entries of the rss and save them in a database.
So you see, you don’t need javascript to do this =)
Good Luck