<?php

require_once('../html/inc/countries.inc');

foreach ($countries as $x=>$country) {
    echo "$country<br>\n";
}

?>