feed rss into dbs
I assume you are using PHP.
PHP comes with an XML parsing module called simplexml and it is indeed simple. You can use it to read rss feeds from other site. Just fetch the elements that you want to put in your database, start a MySQL connection, and put away those elements.
But why would you even want to store rss feeds in to your own database when you can easily fetch them from the other site?
Kailash Badu
|