Author: Sean Keener

Destinations Europe



Why go there?
Below are major cities you can fly to, both as destinations and as starting points for wherever you want to travel overland around or from that city. For each place, we’ve chucked in a few pointers about why you want that city on your itinerary. So click away and decide where you want to go.

<?php
define('MAGPIE_DIR', '/var/www/magpie/');
require_once(MAGPIE_DIR.'rss_fetch.inc');
error_reporting(E_ERROR);
$num_items = 100;
$url = "https://www.bootsnall.com/rtw/plan-your-rtw-trip/destinations/europe/index.xml";
showFeed($url, $num_items);
echo "Back to top
“;
function showFeed($url, $num_items)
{
if ( $url )
{
$rss = fetch_rss( $url );
if ($rss)
{
$items = array_slice($rss->items, 0, $num_items);
foreach ($items as $item)
{
$href = $item[‘link’];
$title = $item[‘title’];
echo “$title
“;
}
}
}
}
?>