- Impact
- 32
Hi,
I got problems with MagpieRSS and was hoping someone here could come to my rescue
Check Lazy Recipes and you will see what the issue is. Feed is supposed to show text, pics and links.
I suspect the issue is in below code, in $summary, but I don't know how to fix it,
Thanks in advance
I got problems with MagpieRSS and was hoping someone here could come to my rescue
Check Lazy Recipes and you will see what the issue is. Feed is supposed to show text, pics and links.
I suspect the issue is in below code, in $summary, but I don't know how to fix it,
Thanks in advance
Code:
<?php
require_once('rss_fetch.inc');
$rss = fetch_rss('http://feeds.feedburner.com/elise/simplyrecipes');
$items = array_slice($rss->items, 0, 10);
foreach ($items as $item) {
$href = $item['link'];
$title = $item['title'];
$summary = $item['summary'];
echo "<p><a href=$href><b><h2>$title</h2></b></a><br>$summary<br><br><br></p>";
}
?>








