Just wondering if someone could suggest a PHP library that would allow me to read the data of an RSS feed and write it to a MySQL database. Also, if possible, provide a link
RSS is a pretty simple format - there is no great need to use a separate library.
I'd just use simplexml, because I don't wanna spend the effort learning another library, and keeping up with its development.
Here is a simple PHP script for showing the latest Stackoverflor posts with simplexml:
title; ?>
entry as $e) {
echo "- link['href']."\">";
echo $e->title;
echo "
\n";
}
?>