items, 0, $num_items);
// OPTIONAL: Show the feed title, as an HTML paragraph
echo "
(Site: About Italy Newsblog >> notizie su eventi, mostre, arte e tutto ciò che succede a Milano)
";
// Start an HTML unordered list
// Output HTML list items
foreach ($items as $item) {
$url = $item['link'];
$title = $item['title'];
$description = $item['description'];
echo "
· $title
";
}
// Close HTML unordered list
?>