1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <?php
header('Content-Type: text/xml;charset=utf-8');
echo(utf8_encode("<?xml version='1.0' encoding='UTF-8' ?><options>"));
if (isset($_GET['debut'])) {
$debut = utf8_decode($_GET['debut']);
} else {
$debut = "";
}
$debut = strtolower($debut);
$liste = array( "Aberdeen, SD (ABR) ",....... environ 3500 objets.....,"Zurich, Switzerland (ZRH) ");
function generateOptions($debut,$liste) {
foreach ($liste as $element) {
echo(utf8_encode("<option>".$element."</option>"));
}
}
generateOptions($debut,$liste);
echo("</options>");
?> |
Partager