MagpieRSS
Hello Everyone,Can anyone please tell me how to install Magpierss and in which file/how to configure RSS settings etc ?
Readme has a very little information
I have tried to insert this into my php file
require_once(rss_fetch.inc);
$url = $_GET['url'];
$rss = fetch_rss( $url );
echo "Channel Title: " . $rss->channel['title'] . "<p>";
echo "<ul>";
foreach ($rss->items as $item) {
$href = $item['link'];
$title = $item['title'];
echo "<li><a href=$href>$title</a></li>";
}
echo "</ul>";
but got this error
Warning: MagpieRSS: fetch_rss called without a url in /home/htdocs/web1/html/domain.com/magpierss/rss_fetch.inc on line 238