• Home >
  • RTW  >
Author: Sean Keener

Destinations Central America


Search for around the world ticket

FAQ: How do I use this trip planner?
  • Start by typing your departure city in the box above. Suggestions will appear as you type.
  • Drag and drop destinations to change the order of your trip.
  • Your return city can be the same as your starting city, or you can change it.
  • After adding your cities, click Next to continue planning your trip.



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/central-america/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
“;
}
}
}
}
?>