function outputCountries($dbAdapter)
{
    $gate = new CountryTableGateway($dbAdapter);
    $result = $gate->findCountriesWithImages();
    foreach ($result as $row) {
        echo '<li class="list-group-item">
			<a href="single-country.php?iso=' . $row->ISO . '">' . $row->CountryName . '</a></li>';
    }
}
function filterCountry($dbAdapter)
{
    $gate = new CountryTableGateway($dbAdapter);
    $result = $gate->findCountriesWithImages();
    foreach ($result as $row) {
        echo '<option value="' . $row->ISO . '">';
        echo $row->CountryName;
        echo '</option>';
    }
}